home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / amiga / Makefile.libnix < prev    next >
Makefile  |  1997-08-14  |  203KB  |  5,764 lines

  1. #    Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2. # This file is part of Aladdin Ghostscript.
  3. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. # or distributor accepts any responsibility for the consequences of using it,
  5. # or for whether it serves any particular purpose or works at all, unless he
  6. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. # License (the "License") for full details.
  8. # Every copy of Aladdin Ghostscript must include a copy of the License,
  9. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. # under certain conditions described in the License.  Among other things, the
  12. # License requires that the copyright notice and this notice be preserved on
  13. # all copies.
  14.  
  15. # Makefile fragment containing the current revision identification.
  16.  
  17. # Define the name of this makefile.
  18. VERSION_MAK=version.mak
  19.  
  20. # Major and minor version numbers.
  21. # MINOR0 is different from MINOR only if MINOR is a single digit.
  22. GS_VERSION_MAJOR=5
  23. GS_VERSION_MINOR=03
  24. GS_VERSION_MINOR0=03
  25. # Revision date: year x 10000 + month x 100 + day.
  26. GS_REVISIONDATE=19970808
  27.  
  28. # Derived values
  29. GS_VERSION=$(GS_VERSION_MAJOR)$(GS_VERSION_MINOR0)
  30. GS_DOT_VERSION=$(GS_VERSION_MAJOR).$(GS_VERSION_MINOR)
  31. GS_REVISION=$(GS_VERSION)
  32. #    Copyright (C) 1989, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  33. # This file is part of Aladdin Ghostscript.
  34. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  35. # or distributor accepts any responsibility for the consequences of using it,
  36. # or for whether it serves any particular purpose or works at all, unless he
  37. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  38. # License (the "License") for full details.
  39. # Every copy of Aladdin Ghostscript must include a copy of the License,
  40. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  41. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  42. # under certain conditions described in the License.  Among other things, the
  43. # License requires that the copyright notice and this notice be preserved on
  44. # all copies.
  45.  
  46. #### Start of system configuration section. ####
  47.  
  48. VPATH = /test/gs5.03
  49. srcdir = /test/gs5.03
  50.  
  51. # Common prefix for machine-independent installed files.
  52. # prefix = ade: because GS is a Libnix client! && is put on Fish-site
  53. # prefix = /ade when GS is compiled using ixemul.library!
  54. # prefix = ghostscript: because GS uses Libnix and is put on Aminet
  55. #          most end users don't have 'ade:'
  56. prefix = Ghostscript:
  57. # Common prefix for machine-dependent installed files.
  58. exec_prefix = $(prefix)
  59.  
  60. # Directory to install executables in.
  61. bindir = $(exec_prefix)
  62. # Directory to install libraries in.
  63. libdir = $(exec_prefix)lib
  64. # Directory to install the Info files in.
  65. infodir = $(prefix)info
  66. # Directory to install script files in.
  67. scriptdir = $(bindir)batch
  68. # Directory to install the man page in.
  69. mandir = $(prefix)man
  70. man1ext = 1
  71. man1dir = $(mandir)/man$(man1ext)
  72. # Number to put on the man page filename.
  73. manext = 1
  74.  
  75. datadir = $(prefix)data
  76. gsdir = $(datadir)
  77. gsdatadir = $(gsdir)
  78.  
  79. docdir=$(prefix)doc
  80. exdir=$(prefix)examples
  81. GS_DOCDIR=$(docdir)
  82.  
  83. # Program to install executables.
  84. INSTALL_PROGRAM = ${INSTALL}
  85. # Program to install data like man pages.
  86. INSTALL_DATA = ${INSTALL} -m 644
  87. # Generic install program.
  88. INSTALL = /bin/install -c
  89.  
  90. CC = gcc
  91. # Use this verion if you compile for Libnix, else the current one
  92. #DEFS =   $(FPU_FLAG) $(CPU_FLAG)
  93. DEFS = -DGSVERSION=\"5.03\" -DGSDATE=\"19970808\"   $(FPU_FLAG) $(CPU_FLAG) #-DIXEMUL
  94.  
  95. # Do a 'setenv="-noixemul"' before running 'configure' !
  96. # if one wants the libnix version  of GS
  97. # configure will add it to the other LDFLAGS
  98. LIBS = 
  99.  
  100.  
  101. # Define the default directory/ies for the runtime
  102. # initialization and font files.  Separate multiple directories with a :.
  103.  
  104. GS_LIB_DEFAULT=$(prefix)fonts,$(gsdatadir)
  105.  
  106. # Define whether or not searching for initialization files should always
  107. # look in the current directory first.  This leads to well-known security
  108. # and confusion problems, but users insist on it.
  109. # NOTE: this also affects searching for files named on the command line:
  110. # see the "File searching" section of use.txt for full details.
  111. # Because of this, setting SEARCH_HERE_FIRST to 0 is not recommended.
  112.  
  113. SEARCH_HERE_FIRST=1
  114.  
  115. # Define the name of the interpreter initialization file.
  116. # (There is no reason to change this.)
  117.  
  118. GS_INIT=gs_init.ps
  119.  
  120. # Choose generic configuration options.
  121.  
  122. # -DDEBUG
  123. #    includes debugging features (-Z switch) in the code.
  124. #      Code runs substantially slower even if no debugging switches
  125. #      are set.
  126. # -DNOPRIVATE
  127. #    makes private (static) procedures and variables public,
  128. #      so they are visible to the debugger and profiler.
  129. #      No execution time or space penalty.
  130.  
  131. #GENOPT=-DDEBUG
  132. GENOPT=
  133.  
  134. # Define the name of the executable file.
  135.  
  136. GS=gs_$(GS_VERSION)
  137.  
  138. # Define the directory where the IJG JPEG library sources are stored,
  139. # and the major version of the library that is stored there.
  140. # You may need to change this if the IJG library version changes.
  141. # See jpeg.mak for more information.
  142.  
  143. JSRCDIR=$(srcdir)/jpeg-6a
  144. JVERSION=6
  145.  
  146. # Define the directory where the PNG library sources are stored,
  147. # and the version of the library that is stored there.
  148. # You may need to change this if the libpng version changes.
  149. # See libpng.mak for more information.
  150.  
  151. PSRCDIR=$(srcdir)/libpng
  152. PVERSION=96
  153.  
  154. # Choose whether to use a shared version of the PNG library, and if so,
  155. # what its name is.
  156. # See gs.mak and make.txt for more information.
  157.  
  158. SHARE_LIBPNG=0
  159. LIBPNG_NAME=png
  160.  
  161. # Define the directory where the zlib sources are stored.
  162. # See zlib.mak for more information.
  163.  
  164. ZSRCDIR=$(srcdir)/zlib
  165.  
  166. # Choose whether to use a shared version of the zlib library, and if so,
  167. # what its name is (usually libz, but sometimes libgz).
  168. # See gs.mak and make.txt for more information.
  169.  
  170. SHARE_ZLIB=0
  171. #ZLIB_NAME=gz
  172. ZLIB_NAME=z
  173.  
  174. # Define how to build the library archives.  (These are not used in any
  175. # standard configuration.)
  176.  
  177. AR=ar
  178. ARFLAGS=qc
  179. RANLIB=ranlib
  180.  
  181. # Define the configuration ID.  Read gs.mak carefully before changing this.
  182.  
  183. CONFIG=
  184.  
  185. # ------ Platform-specific options ------ #
  186.  
  187. # Define the name of the C compiler.
  188. # JOOP: done in configure script
  189. #CC=gcc
  190.  
  191. # Define the name of the linker for the final link step.
  192. # Normally this is the same as the C compiler.
  193.  
  194. CCLD=$(CC)
  195.  
  196. # Define the default gcc flags.
  197. # To work around the gcc 2.7.x optimizer bug,
  198. # add -Dconst= and remove -Wcast-qual and -Wwrite-strings.
  199.  
  200. #GCFLAGS=-Wall -Wcast-qual -Wpointer-arith -Wstrict-prototypes -Wwrite-strings
  201. GCFLAGS=-Wall -Wpointer-arith -Wstrict-prototypes
  202.  
  203. # Define the other compilation flags.  Add at most one of the following:
  204. #    -DBSD4_2 for 4.2bsd systems.
  205. #    -DSYSV for System V or DG/UX.
  206. #     -DSYSV -D__SVR3 for SCO ODT, ISC Unix 2.2 or before,
  207. #       or any System III Unix, or System V release 3-or-older Unix.
  208. #    -DSVR4 -DSVR4_0 (not -DSYSV) for System V release 4.0.
  209. #    -DSVR4 (not -DSYSV) for System V release 4.2 (or later) and Solaris 2.
  210. # XCFLAGS can be set from the command line.
  211. # We don't include -ansi, because this gets in the way of the platform-
  212. #   specific stuff that <math.h> typically needs; nevertheless, we expect
  213. #   gcc to accept ANSI-style function prototypes and function definitions.
  214. XCFLAGS=
  215.  
  216. #CFLAGS=-O $(GCFLAGS) $(XCFLAGS)
  217.  
  218. # - Make sure that the version string of gdevamiga.c is correctly included
  219. # for that to happen you need to modify the specs file or hand define
  220. # cpu options (-m68030 -DMC68030 -m68881 -DMC68881 etc)
  221. CFLAGS=-O2 -fomit-frame-pointer -fno-builtin $(GCFLAGS) $(XCFLAGS)
  222.  
  223. # Define platform flags for ld.
  224. # SunOS 4.n may need -Bstatic.
  225. # XLDFLAGS can be set from the command line.
  226. XLDFLAGS=
  227.  
  228. LDFLAGS= $(XLDFLAGS)
  229.  
  230. # Define any extra libraries to link into the executable.
  231. # ISC Unix 2.2 wants -linet.
  232. # SCO Unix needs -lsocket if you aren't including the X11 driver.
  233. # SVR4 may need -lnsl.
  234. # (Libraries required by individual drivers are handled automatically.)
  235.  
  236. EXTRALIBS=
  237.  
  238. # Define the include switch(es) for the X11 header files.
  239. # This can be null if handled in some other way (e.g., the files are
  240. # in /usr/include, or the directory is supplied by an environment variable);
  241. # in particular, SCO Xenix, Unix, and ODT just want
  242. #XINCLUDE=
  243. # Note that x_.h expects to find the header files in $(XINCLUDE)/X11,
  244. # not in $(XINCLUDE).
  245.  
  246. XINCLUDE=-I/usr/X11R6.1/include
  247.  
  248. # Define the directory/ies and library names for the X11 library files.
  249. # XLIBDIRS is for ld and should include -L; XLIBDIR is for LD_RUN_PATH
  250. # (dynamic libraries on SVR4) and should not include -L.
  251. # Both can be null if these files are in the default linker search path;
  252. # in particular, SCO Xenix, Unix, and ODT just want
  253. #XLIBDIRS=
  254. # Solaris and other SVR4 systems with dynamic linking probably want
  255. #XLIBDIRS=-L/usr/openwin/lib
  256. #XLIBDIR=/usr/openwin/lib
  257. # X11R6 (on any platform) may need
  258. #XLIBS=Xt SM ICE Xext X11
  259.  
  260. #XLIBDIRS=-L/usr/local/X/lib
  261. XLIBDIRS=-L/usr/X11R6.1/lib
  262. XLIBDIR=
  263. XLIBS=Xt Xext X11
  264.  
  265. # Define whether this platform has floating point hardware:
  266. #    FPU_TYPE=2 means floating point is faster than fixed point.
  267. # (This is the case on some RISCs with multiple instruction dispatch.)
  268. #    FPU_TYPE=1 means floating point is at worst only slightly slower
  269. # than fixed point.
  270. #    FPU_TYPE=0 means that floating point may be considerably slower.
  271. #    FPU_TYPE=-1 means that floating point is always much slower than
  272. # fixed point.
  273.  
  274. FPU_TYPE=1
  275.  
  276. # ------ Devices and features ------ #
  277.  
  278. # Choose the language feature(s) to include.  See gs.mak for details.
  279.  
  280. FEATURE_DEVS=level2.dev pdf.dev pipe.dev
  281.  
  282. # Choose whether to compile the .ps initialization files into the executable.
  283. # See gs.mak for details.
  284.  
  285. COMPILE_INITS=0
  286.  
  287. # Choose whether to store band lists on files or in memory.
  288. # The choices are 'file' or 'memory'.
  289.  
  290. BAND_LIST_STORAGE=memory
  291.  
  292. # Choose which compression method to use when storing band lists in memory.
  293. # The choices are 'lzw' or 'zlib'.  lzw is not recommended, because the
  294. # LZW-compatible code in Ghostscript doesn't actually compress its input.
  295.  
  296. BAND_LIST_COMPRESSOR=zlib
  297.  
  298. # Choose the implementation of file I/O: 'stdio', 'fd', or 'both'.
  299. # See gs.mak and sfxfd.c for more details.
  300.  
  301. FILE_IMPLEMENTATION=stdio
  302.  
  303. # Choose the device(s) to include.  See devs.mak for details.
  304. # JOOP: currently only the Amiga driver and PNG are active. 
  305. #       If you want more/other devices active then remove '#' and recompile.
  306. DEVICE_DEVS=amiga.dev amiga_printer.dev amiga_ilbm.dev amiga_custom.dev
  307. DEVICE_DEVS1=epson.dev eps9mid.dev eps9high.dev st800.dev stcolor.dev
  308. DEVICE_DEVS2=deskjet.dev djet500.dev laserjet.dev ljetplus.dev ljet2p.dev ljet3.dev ljet4.dev
  309. DEVICE_DEVS3=cdeskjet.dev cdjcolor.dev cdjmono.dev cdj550.dev pj.dev pjxl.dev pjxl300.dev
  310. DEVICE_DEVS4=uniprint.dev
  311. DEVICE_DEVS5=bj10e.dev bj200.dev bjc600.dev bjc800.dev
  312. DEVICE_DEVS6=faxg3.dev faxg32d.dev faxg4.dev
  313. DEVICE_DEVS7=pcxmono.dev pcxgray.dev pcx16.dev pcx256.dev pcx24b.dev pcxcmyk.dev
  314. DEVICE_DEVS8=pbm.dev pbmraw.dev pgm.dev pgmraw.dev pgnm.dev pgnmraw.dev pnm.dev pnmraw.dev ppm.dev ppmraw.dev
  315. DEVICE_DEVS9=tiffcrle.dev tiffg3.dev tiffg32d.dev tiffg4.dev tifflzw.dev tiffpack.dev
  316. DEVICE_DEVS10=tiff12nc.dev tiff24nc.dev
  317. DEVICE_DEVS11=bmpmono.dev bmp16.dev bmp256.dev bmp16m.dev
  318. DEVICE_DEVS12=psmono.dev psgray.dev bit.dev bitrgb.dev bitcmyk.dev
  319. DEVICE_DEVS13=pngmono.dev pnggray.dev png16.dev png256.dev png16m.dev
  320. DEVICE_DEVS14=jpeg.dev jpeggray.dev
  321. DEVICE_DEVS15=pdfwrite.dev pswrite.dev epswrite.dev pxlmono.dev pxlcolor.dev
  322.  
  323. # ---------------------------- End of options --------------------------- #
  324.  
  325. # Define the name of the partial makefile that specifies options --
  326. # used in dependencies.
  327.  
  328. MAKEFILE=gcc-head.mak
  329.  
  330. # Define the ANSI-to-K&R dependency.  (gcc accepts ANSI syntax.)
  331.  
  332. AK=
  333.  
  334. # Define the compilation rules and flags.
  335.  
  336. CCC=$(CC) $(CCFLAGS) -c
  337. CCAUX=$(CC)
  338. #We can't use -fomit-frame-pointer with -pg....
  339. #CCLEAF=$(CCC)
  340. CCLEAF=$(CCC) -fomit-frame-pointer
  341.  
  342. # --------------------------- Generic makefile ---------------------------- #
  343.  
  344. # The remainder of the makefile (unixhead.mak, gs.mak, devs.mak, unixtail.mak)
  345. # is generic.  tar_cat concatenates all these together.
  346. #    Copyright (C) 1990, 1993, 1996 Aladdin Enterprises.  All rights reserved.
  347. # This file is part of Aladdin Ghostscript.
  348. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  349. # or distributor accepts any responsibility for the consequences of using it,
  350. # or for whether it serves any particular purpose or works at all, unless he
  351. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  352. # License (the "License") for full details.
  353. # Every copy of Aladdin Ghostscript must include a copy of the License,
  354. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  355. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  356. # under certain conditions described in the License.  Among other things, the
  357. # License requires that the copyright notice and this notice be preserved on
  358. # all copies.
  359.  
  360. # Partial makefile common to all Unix configurations.
  361.  
  362. # This part of the makefile gets inserted after the compiler-specific part
  363. # (xxx-head.mak) and before gs.mak and devs.mak.
  364.  
  365. # ----------------------------- Generic stuff ----------------------------- #
  366.  
  367. # Define the platform name.  For a "stock" System V platform,
  368. # use sysv_ instead of unix_.
  369.  
  370. PLATFORM=amiga_
  371.  
  372. # Define the syntax for command, object, and executable files.
  373.  
  374. CMD=
  375. O=-o ./
  376. OBJ=o
  377. XE=
  378. XEAUX=
  379.  
  380. # Define the current directory prefix and command invocations.
  381.  
  382. CAT=cat
  383. D=/
  384. EXPP=
  385. EXP=
  386. SHELL=/bin/sh
  387. SH=$(SHELL)
  388. SHP=$(SH) $(EXP)
  389.  
  390. # Define generic commands.
  391.  
  392. CP_=cp
  393. RM_=rm -f
  394. RMN_=rm -f
  395.  
  396. # Define the arguments for genconf.
  397.  
  398. CONFILES=-p "%s&s&&" -pl "&-l%s&s&&" -pL "&-L%s&s&&" -ol $(ld_tr)
  399.  
  400. # Define the compilation rules and flags.
  401.  
  402. CCFLAGS=$(GENOPT) $(CFLAGS)
  403.  
  404. .c.o:
  405.     $(CCC) -c -I. -I$(srcdir) $(DEFS) $< $(OUTPUT_OPTION)
  406.  
  407. #.c.o: $(AK)
  408. #    $(CCC) $*.c
  409.  
  410. CCCF=$(CCC)
  411. CCD=$(CCC)
  412. CCINT=$(CCC)
  413.  
  414. BEGINFILES=
  415. CCBEGIN=$(CCC) *.c
  416.  
  417. # Patch a couple of PC-specific things that aren't relevant to Unix builds,
  418. # but that cause `make' to produce warnings.
  419.  
  420. BGIDIR=***UNUSED***
  421. PCFBASM=
  422. #    Copyright (C) 1989, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  423. # This file is part of Aladdin Ghostscript.
  424. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  425. # or distributor accepts any responsibility for the consequences of using it,
  426. # or for whether it serves any particular purpose or works at all, unless he
  427. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  428. # License (the "License") for full details.
  429. # Every copy of Aladdin Ghostscript must include a copy of the License,
  430. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  431. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  432. # under certain conditions described in the License.  Among other things, the
  433. # License requires that the copyright notice and this notice be preserved on
  434. # all copies.
  435.  
  436. # Generic makefile, common to all platforms.
  437. # The platform-specific makefiles `include' this file.
  438. # They define the following symbols:
  439. #    GS - the name of the executable (without the extension, if any).
  440. #    GS_LIB_DEFAULT - the default directory/ies for searching for the
  441. #        initialization and font files at run time.
  442. #    SEARCH_HERE_FIRST - the default setting of -P (whether or not to
  443. #        look for files in the current directory first).
  444. #    GS_DOCDIR - the directory where documentation will be available
  445. #        at run time.
  446. #    JSRCDIR - the directory where the IJG JPEG library source code
  447. #        is stored (at compilation time).
  448. #    JVERSION - the major version number of the IJG JPEG library.
  449. #    PSRCDIR, PVERSION - the same for libpng.
  450. #    ZSRCDIR - the same for zlib.
  451. #    SHARE_LIBPNG - normally 0; if set to 1, asks the linker to use
  452. #        an existing compiled libpng (-lpng) instead of compiling and
  453. #        linking libpng explicitly.
  454. #    LIBPNG_NAME, the name of the shared libpng, currently always
  455. #        png (libpng, -lpng).
  456. #    SHARE_ZLIB - normally 0; if set to 1, asks the linker to use
  457. #        an existing compiled zlib (-lgz or -lz) instead of compiling
  458. #        and linking libgz/libz explicitly.
  459. #    ZLIB_NAME - the name of the shared zlib, either gz (for libgz, -lgz)
  460. #        or z (for libz, -lz).
  461. #    CONFIG - a configuration ID, added at the request of a customer,
  462. #        that is supposed to help in maintaining multiple variants in
  463. #        a single directory.  Normally this is an empty string;
  464. #        it may be any string that is legal as part of a file name.
  465. #    DEVICE_DEVS - the devices to include in the executable.
  466. #        See devs.mak for details.
  467. #    DEVICE_DEVS1...DEVICE_DEVS15 - additional devices, if the definition
  468. #        of DEVICE_DEVS doesn't fit on one line.  See devs.mak for details.
  469. #    FEATURE_DEVS - what features to include in the executable.
  470. #        Normally this is one of:
  471. #            level1 - a standard PostScript Level 1 language
  472. #            interpreter.
  473. #            level2 - a standard PostScript Level 2 language
  474. #            interpreter.
  475. #            pdf - a PDF-capable interpreter.
  476. #        You may include both level1 and pdf, or both level2 and pdf.
  477. #        The following feature may be added to either of the standard
  478. #        configurations:
  479. #            ccfonts - precompile fonts into C, and link them
  480. #            with the executable.  See fonts.txt for details.
  481. #        The remaining features are of interest primarily to developers
  482. #        who want to "mix and match" features to create custom
  483. #        configurations:
  484. #            dps - (partial) support for Display PostScript extensions:
  485. #            see language.txt for details.
  486. #            btoken - support for binary token encodings.
  487. #            Included automatically in the dps and level2 features.
  488. #            cidfont - (currently partial) support for CID-keyed fonts.
  489. #            color - support for the Level 1 CMYK color extensions.
  490. #            Included automatically in the dps and level2 features.
  491. #            compfont - support for composite (type 0) fonts.
  492. #            Included automatically in the level2 feature.
  493. #            dct - support for DCTEncode/Decode filters.
  494. #            Included automatically in the level2 feature.
  495. #            epsf - support for recognizing and skipping the binary
  496. #            header of MS-DOS EPSF files.
  497. #            filter - support for Level 2 filters (other than eexec,
  498. #            ASCIIHexEncode/Decode, NullEncode, PFBDecode,
  499. #            RunLengthEncode/Decode, and SubFileDecode, which are
  500. #            always included, and DCTEncode/Decode,
  501. #            which are separate).
  502. #            Included automatically in the level2 feature.
  503. #            fzlib - support for zlibEncode/Decode filters.
  504. #            ttfont - support for TrueType fonts.
  505. #            type1 - support for Type 1 fonts and eexec;
  506. #            normally included automatically in all configurations.
  507. #            type42 - support for Type 42 (embedded TrueType) fonts.
  508. #            Included automatically in the level2 feature.
  509. #        There are quite a number of other sub-features that can be
  510. #        selectively included in or excluded from a configuration,
  511. #        but the above are the ones that are most likely to be of
  512. #        interest.
  513. #    COMPILE_INITS - normally 0; if set to 1, compiles the PostScript
  514. #        language initialization files (gs_init.ps et al) into the
  515. #        executable, eliminating the need for these files to be present
  516. #        at run time.
  517. #    BAND_LIST_STORAGE - normally file; if set to memory, stores band
  518. #        lists in memory (with compression if needed).
  519. #    BAND_LIST_COMPRESSOR - normally zlib: selects the compression method
  520. #        to use for band lists in memory.
  521. #    FILE_IMPLEMENTATION - normally stdio; if set to fd, uses file
  522. #        descriptors instead of buffered stdio for file I/O; if set to
  523. #        both, provides both implementations with different procedure
  524. #        names for the fd-based implementation (see sfxfd.c for
  525. #        more information).
  526. #    EXTEND_NAMES - a value N between 0 and 6, indicating that the name
  527. #        table should have a capacity of 2^(16+N) names.  This normally
  528. #        should be set to 0 (or left undefined), since non-zero values
  529. #        result in a larger fixed space overhead and slightly slower code.
  530. #        EXTEND_NAMES is ignored in 16-bit environments.
  531. #
  532. # It is very unlikely that anyone would want to edit the remaining
  533. #   symbols, but we describe them here for completeness:
  534. #    GS_INIT - the name of the initialization file for the interpreter,
  535. #        normally gs_init.ps.
  536. #    PLATFORM - a "device" name for the platform, so that platforms can
  537. #        add various kinds of resources like devices and features.
  538. #    CMD - the suffix for shell command files (e.g., null or .bat).
  539. #        (This is only needed in a few places.)
  540. #    D - the directory separator character (\ for MS-DOS, / for Unix).
  541. #    O - the string for specifying the output file from the C compiler
  542. #        (-o for MS-DOS, -o ./ for Unix).
  543. #    OBJ - the extension for relocatable object files (e.g., o or obj).
  544. #    XE - the extension for executable files (e.g., null or .exe).
  545. #    XEAUX - the extension for the executable files (e.g., null or .exe)
  546. #        for the utility programs (ansi2knr and those compiled with
  547. #        CCAUX).
  548. #    BEGINFILES - the list of files that `make begin' and `make clean'
  549. #        should delete.
  550. #    CCA2K - the C invocation for the ansi2knr program, which is the only
  551. #        one that doesn't use ANSI C syntax.  (It is only needed if
  552. #        the main C compiler also isn't an ANSI compiler.)
  553. #    CCAUX - the C invocation for auxiliary programs (echogs, genarch,
  554. #        genconf, geninit).
  555. #    CCBEGIN - the compilation command for `make begin', normally
  556. #        $(CCC) *.c.
  557. #    CCC - the C invocation for normal compilation.
  558. #    CCD - the C invocation for files that store into frame buffers or
  559. #        device registers.  Needed because some optimizing compilers
  560. #        will eliminate necessary stores.
  561. #    CCCF - the C invocation for compiled fonts and other large,
  562. #        self-contained data modules.  Needed because MS-DOS
  563. #        requires using the 'huge' memory model for these.
  564. #    CCINT - the C invocation for compiling the main interpreter module,
  565. #        normally the same as CCC: this is needed because the
  566. #        Borland compiler generates *worse* code for this module
  567. #        (but only this module) when optimization (-O) is turned on.
  568. #    CCLEAF - the C invocation for compiling modules that contain only
  569. #        leaf procedures, which don't need to build stack frames.
  570. #        This is needed only because many compilers aren't able to
  571. #        recognize leaf procedures on their own.
  572. #    AK - if source files must be converted from ANSI to K&R syntax,
  573. #        this is $(ANSI2KNR_XE); if not, it is null.
  574. #        If a particular platform requires other utility programs
  575. #        to be built, AK must include them too.
  576. #    SHP - the prefix for invoking a shell script in the current directory
  577. #        (null for MS-DOS, $(SH) ./ for Unix).
  578. #    EXPP, EXP - the prefix for invoking an executable program in the
  579. #        current directory (null for MS-DOS, ./ for Unix).
  580. #    SH - the shell for scripts (null on MS-DOS, sh on Unix).
  581. #    CONFILES - the arguments for genconf to generate the appropriate
  582. #        linker control files (various).
  583. #    CP_ - the command for copying one file to another.  Because of
  584. #        limitations in the MS-DOS/MS Windows environment, the
  585. #        second argument must either be '.' (in which case the
  586. #        write date may be either preserved or set to the current
  587. #        date) or a file name (in which case the write date is
  588. #        always updated).
  589. #    RM_ - the command for deleting (a) file(s) (including wild cards,
  590. #        but limited to a single file or pattern).
  591. #    RMN_ = the command for deleting multiple files / patterns.
  592. #
  593. # The platform-specific makefiles must also include rules for creating
  594. # certain dynamically generated files:
  595. #    gconfig_.h - this indicates the presence or absence of
  596. #        certain system header files that are located in different
  597. #        places on different systems.  (It could be generated by
  598. #        the GNU `configure' program.)
  599. #    gconfigv.h - this indicates the status of certain machine-
  600. #        and configuration-specific features derived from definitions
  601. #        in the platform-specific makefile.
  602.  
  603. # Define the name of this makefile.
  604. GS_MAK=makefile
  605.  
  606. # Define the names of the executables.
  607. GS_XE=$(GS)$(XE)
  608. ANSI2KNR_XE=ansi2knr$(XEAUX)
  609. ECHOGS_XE=echogs$(XEAUX)
  610. GENARCH_XE=genarch$(XEAUX)
  611. GENCONF_XE=genconf$(XEAUX)
  612. GENINIT_XE=geninit$(XEAUX)
  613.  
  614. # Define the names of the CONFIG-dependent header files.
  615. # gconfig*.h and gconfx*.h are generated dynamically.
  616. gconfig_h=gconfxx$(CONFIG).h
  617. gconfigf_h=gconfxc$(CONFIG).h
  618.  
  619. # Watcom make insists that rules have a non-empty body!
  620. all default: $(GS_XE)
  621.     $(RM_) _temp_*
  622.  
  623. distclean maintainer-clean realclean: clean
  624.     $(RM_) makefile
  625.  
  626. clean: mostlyclean
  627.     $(RM_) arch.h
  628.     $(RM_) $(GS_XE)
  629.  
  630. mostlyclean:
  631.     $(RMN_) *.$(OBJ) *.a core gmon.out
  632.     $(RMN_) *.dev *.d_* devs*.tr gconfig*.h gconfx*.h j*.h o*.tr l*.tr
  633.     $(RMN_) deflate.h zutil.h
  634.     $(RMN_) gconfig*.c gscdefs*.c iconfig*.c
  635.     $(RMN_) _temp_* _temp_*.* *.map *.sym
  636.     $(RMN_) $(ANSI2KNR_XE) $(ECHOGS_XE) $(GENARCH_XE) $(GENCONF_XE) $(GENINIT_XE)
  637.     $(RMN_) gs_init.c $(BEGINFILES)
  638.  
  639. # Remove only configuration-dependent information.
  640. config-clean:
  641.     $(RMN_) *.dev devs*.tr gconfig*.h gconfx*.h o*.tr l*.tr
  642.  
  643. # A rule to do a quick and dirty compilation attempt when first installing
  644. # the interpreter.  Many of the compilations will fail:
  645. # follow this with 'make'.
  646.  
  647. begin:
  648.     $(RMN_) arch.h gconfig*.h gconfx*.h $(GENARCH_XE) $(GS_XE)
  649.     $(RMN_) gconfig*.c gscdefs*.c iconfig*.c
  650.     $(RMN_) gs_init.c $(BEGINFILES)
  651.     make arch.h gconfigv.h
  652.     - $(CCBEGIN)
  653.     $(RMN_) gconfig.$(OBJ) gdev*.$(OBJ) gp_*.$(OBJ) gscdefs.$(OBJ) gsmisc.$(OBJ)
  654.     $(RMN_) ccfontab.$(OBJ) iconfig.$(OBJ) iinit.$(OBJ) interp.$(OBJ)
  655.  
  656. # Auxiliary programs
  657.  
  658. arch.h: $(GENARCH_XE)
  659.     $(EXPP) $(EXP)genarch arch.h
  660.  
  661. # Macros for constructing the *.dev files that describe features and
  662. # devices.
  663. SETDEV=$(EXP)echogs -e .dev -w- -l-dev -F -s -l-obj
  664. SETPDEV=$(EXP)echogs -e .dev -w- -l-dev -F -s -l-include -lpage -l-obj
  665. SETMOD=$(EXP)echogs -e .dev -w- -l-obj
  666. ADDMOD=$(EXP)echogs -e .dev -a-
  667.  
  668. # Define the compilation commands for the third-party libraries.
  669. CCCP=$(CCC) -I$(PSRCDIR) -I$(ZSRCDIR) -DPNG_USE_CONST
  670. CCCJ=$(CCC) -I. -I$(srcdir) -I$(JSRCDIR)
  671. CCCZ=$(CCC) -I. -I$(srcdir) -I$(ZSRCDIR)
  672.  
  673. ######################## How to define new 'features' #######################
  674. #
  675. # One defines new 'features' exactly like devices (see devs.mak for details).
  676. # For example, one would define a feature abc by adding the following to
  677. # gs.mak:
  678. #
  679. #    abc_=abc1.$(OBJ) ...
  680. #    abc.dev: $(GS_MAK) $(ECHOGS_XE) $(abc_)
  681. #        $(SETMOD) abc $(abc_)
  682. #        $(ADDMOD) abc -obj ... [if needed]
  683. #        $(ADDMOD) abc -oper ... [if appropriate]
  684. #        $(ADDMOD) abc -ps ... [if appropriate]
  685. #
  686. # If the abc feature requires the presence of some other features jkl and
  687. # pqr, then the rules must look like this:
  688. #
  689. #    abc_=abc1.$(OBJ) ...
  690. #    abc.dev: $(GS_MAK) $(ECHOGS_XE) $(abc_) jkl.dev pqr.dev
  691. #        $(SETMOD) abc $(abc_)
  692. #        ...
  693. #        $(ADDMOD) abc -include jkl pqr
  694.  
  695. # --------------------- Configuration-dependent files --------------------- #
  696.  
  697. # gconfig.h shouldn't have to depend on DEVS_ALL, but that would
  698. # involve rewriting gsconfig to only save the device name, not the
  699. # contents of the <device>.dev files.
  700. # FEATURE_DEVS must precede DEVICE_DEVS so that devices can override
  701. # features in obscure cases.
  702.  
  703. DEVS_ALL=$(PLATFORM).dev $(FEATURE_DEVS) \
  704.   $(DEVICE_DEVS) $(DEVICE_DEVS1) \
  705.   $(DEVICE_DEVS2) $(DEVICE_DEVS3) $(DEVICE_DEVS4) $(DEVICE_DEVS5) \
  706.   $(DEVICE_DEVS6) $(DEVICE_DEVS7) $(DEVICE_DEVS8) $(DEVICE_DEVS9) \
  707.   $(DEVICE_DEVS10) $(DEVICE_DEVS11) $(DEVICE_DEVS12) $(DEVICE_DEVS13) \
  708.   $(DEVICE_DEVS14) $(DEVICE_DEVS15)
  709.  
  710. devs_tr=devs.tr$(CONFIG)
  711. $(devs_tr): $(GS_MAK) $(MAKEFILE) $(ECHOGS_XE)
  712.     $(EXP)echogs -w $(devs_tr) - -include $(PLATFORM).dev
  713.     $(EXP)echogs -a $(devs_tr) - $(FEATURE_DEVS)
  714.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS)
  715.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS1)
  716.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS2)
  717.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS3)
  718.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS4)
  719.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS5)
  720.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS6)
  721.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS7)
  722.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS8)
  723.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS9)
  724.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS10)
  725.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS11)
  726.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS12)
  727.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS13)
  728.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS14)
  729.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS15)
  730.  
  731. # GCONFIG_EXTRAS can be set on the command line.
  732. # Note that it consists of arguments for echogs, i.e.,
  733. # it isn't just literal text.
  734. GCONFIG_EXTRAS=
  735.  
  736. ld_tr=ld$(CONFIG).tr
  737. $(gconfig_h) $(ld_tr) lib.tr: \
  738.   $(GS_MAK) $(MAKEFILE) version.mak $(GENCONF_XE) $(ECHOGS_XE) $(devs_tr) $(DEVS_ALL) libcore.dev
  739.     $(EXP)genconf $(devs_tr) libcore.dev -h $(gconfig_h) $(CONFILES)
  740.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_LIB_DEFAULT -x 2022 $(GS_LIB_DEFAULT) -x 22
  741.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u SEARCH_HERE_FIRST -s $(SEARCH_HERE_FIRST)
  742.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_DOCDIR -x 2022 $(GS_DOCDIR) -x 22
  743.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_INIT -x 2022 $(GS_INIT) -x 22
  744.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_REVISION -s $(GS_REVISION)
  745.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_REVISIONDATE -s $(GS_REVISIONDATE)
  746.     $(EXP)echogs -a $(gconfig_h) $(GCONFIG_EXTRAS)
  747.  
  748. ################################################################
  749. # The other platform-independent makefiles are concatenated
  750. # (or included) after this one:
  751. #    lib.mak
  752. #    int.mak
  753. #    jpeg.mak
  754. #    libpng.mak
  755. #    zlib.mak
  756. #    devs.mak
  757. ################################################################
  758. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  759. # This file is part of Aladdin Ghostscript.
  760. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  761. # or distributor accepts any responsibility for the consequences of using it,
  762. # or for whether it serves any particular purpose or works at all, unless he
  763. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  764. # License (the "License") for full details.
  765. # Every copy of Aladdin Ghostscript must include a copy of the License,
  766. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  767. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  768. # under certain conditions described in the License.  Among other things, the
  769. # License requires that the copyright notice and this notice be preserved on
  770. # all copies.
  771.  
  772. # (Platform-independent) makefile for graphics library and other support code.
  773. # See the end of gs.mak for where this fits into the build process.
  774.  
  775. # Define the name of this makefile.
  776. LIB_MAK=lib.mak
  777.  
  778. # Define the inter-dependencies of the .h files.
  779. # Since not all versions of `make' defer expansion of macros,
  780. # we must list these in bottom-to-top order.
  781.  
  782. # Generic files
  783.  
  784. arch_h=arch.h
  785. stdpre_h=stdpre.h
  786. std_h=std.h $(arch_h) $(stdpre_h)
  787.  
  788. # Platform interfaces
  789.  
  790. gp_h=gp.h
  791. gpcheck_h=gpcheck.h
  792.  
  793. # Configuration definitions
  794.  
  795. # gconfig*.h are generated dynamically.
  796. gconfig__h=gconfig_.h
  797. gconfigv_h=gconfigv.h
  798. gscdefs_h=gscdefs.h
  799.  
  800. # C library interfaces
  801.  
  802. # Because of variations in the "standard" header files between systems, and
  803. # because we must include std.h before any file that includes sys/types.h,
  804. # we define local include files named *_.h to substitute for <*.h>.
  805.  
  806. vmsmath_h=vmsmath.h
  807.  
  808. dos__h=dos_.h
  809. ctype__h=ctype_.h $(std_h)
  810. dirent__h=dirent_.h $(std_h) $(gconfig__h)
  811. errno__h=errno_.h $(std_h)
  812. malloc__h=malloc_.h $(std_h)
  813. math__h=math_.h $(std_h) $(vmsmath_h)
  814. memory__h=memory_.h $(std_h)
  815. stat__h=stat_.h $(std_h)
  816. stdio__h=stdio_.h $(std_h)
  817. string__h=string_.h $(std_h)
  818. time__h=time_.h $(std_h) $(gconfig__h)
  819. windows__h=windows_.h
  820.  
  821. # Miscellaneous
  822.  
  823. gdebug_h=gdebug.h
  824. gsalloc_h=gsalloc.h
  825. gsargs_h=gsargs.h
  826. gserror_h=gserror.h
  827. gserrors_h=gserrors.h
  828. gsexit_h=gsexit.h
  829. gsgc_h=gsgc.h
  830. gsio_h=gsio.h
  831. gsmdebug_h=gsmdebug.h
  832. gsmemory_h=gsmemory.h
  833. gsrefct_h=gsrefct.h
  834. gsstruct_h=gsstruct.h
  835. gstypes_h=gstypes.h
  836. gx_h=gx.h $(stdio__h) $(gdebug_h) $(gserror_h) $(gsio_h) $(gsmemory_h) $(gstypes_h)
  837.  
  838. GX=$(AK) $(gx_h)
  839. GXERR=$(GX) $(gserrors_h)
  840.  
  841. ###### Support
  842.  
  843. ### Include files
  844.  
  845. gsbitops_h=gsbitops.h
  846. gsbittab_h=gsbittab.h
  847. gsflip_h=gsflip.h
  848. gsuid_h=gsuid.h
  849. gsutil_h=gsutil.h
  850. gxarith_h=gxarith.h
  851. gxbitmap_h=gxbitmap.h $(gstypes_h)
  852. gxfarith_h=gxfarith.h $(gconfigv_h) $(gxarith_h)
  853. gxfixed_h=gxfixed.h
  854. gxobj_h=gxobj.h $(gxbitmap_h)
  855. # Out of order
  856. gxalloc_h=gxalloc.h $(gsalloc_h) $(gxobj_h)
  857.  
  858. ### Executable code
  859.  
  860. gsalloc.$(OBJ): gsalloc.c $(GX) $(memory__h) $(string__h) \
  861.   $(gsmdebug_h) $(gsstruct_h) $(gxalloc_h)
  862.  
  863. gsargs.$(OBJ): gsargs.c $(ctype__h) $(stdio__h) $(string__h)\
  864.  $(gsargs_h) $(gsexit_h) $(gsmemory_h)
  865.  
  866. gsbitops.$(OBJ): gsbitops.c $(AK) $(memory__h) $(stdio__h)\
  867.  $(gdebug_h) $(gsbitops_h) $(gstypes_h)
  868.  
  869. gsbittab.$(OBJ): gsbittab.c $(AK) $(stdpre_h) $(gsbittab_h)
  870.  
  871. # gsfemu is only used in FPU-less configurations, and currently only with gcc.
  872. # We thought using CCLEAF would produce smaller code, but it actually
  873. # produces larger code!
  874. gsfemu.$(OBJ): gsfemu.c $(AK) $(std_h)
  875.  
  876. # gsflip is not part of the standard configuration: it's rather large,
  877. # and no standard facility requires it.
  878. gsflip.$(OBJ): gsflip.c $(GX) $(gsbittab_h) $(gsflip_h)
  879.     $(CCLEAF) -I. $(srcdir)/gsflip.c
  880.  
  881. gsmemory.$(OBJ): gsmemory.c $(GX) $(malloc__h) $(memory__h) \
  882.   $(gsmdebug_h) $(gsrefct_h) $(gsstruct_h)
  883.  
  884. gsmisc.$(OBJ): gsmisc.c $(GXERR) $(gconfigv_h) \
  885.   $(malloc__h) $(math__h) $(memory__h) $(gpcheck_h) $(gxfarith_h) $(gxfixed_h)
  886.  
  887. # gsnogc currently is only used in library-only configurations.
  888. gsnogc.$(OBJ): gsnogc.c $(GX)\
  889.  $(gsgc_h) $(gsmdebug_h) $(gsstruct_h) $(gxalloc_h)
  890.  
  891. gsutil.$(OBJ): gsutil.c $(AK) $(memory__h) $(string__h) $(gconfigv_h)\
  892.  $(gstypes_h) $(gsuid_h) $(gsutil_h)
  893.  
  894. ###### Low-level facilities and utilities
  895.  
  896. ### Include files
  897.  
  898. gdevbbox_h=gdevbbox.h
  899. gdevmem_h=gdevmem.h $(gsbitops_h)
  900. gdevmrop_h=gdevmrop.h
  901.  
  902. gsccode_h=gsccode.h
  903. gsccolor_h=gsccolor.h $(gsstruct_h)
  904. gscsel_h=gscsel.h
  905. gscolor1_h=gscolor1.h
  906. gscoord_h=gscoord.h
  907. gscpm_h=gscpm.h
  908. gsdevice_h=gsdevice.h
  909. gsfcmap_h=gsfcmap.h $(gsccode_h)
  910. gsfont_h=gsfont.h
  911. gshsb_h=gshsb.h
  912. gsht_h=gsht.h
  913. gsht1_h=gsht1.h $(gsht_h)
  914. gsiparam_h=gsiparam.h
  915. gsjconf_h=gsjconf.h $(std_h)
  916. gslib_h=gslib.h
  917. gslparam_h=gslparam.h
  918. gsmatrix_h=gsmatrix.h
  919. gspaint_h=gspaint.h
  920. gsparam_h=gsparam.h
  921. gspath2_h=gspath2.h
  922. gspenum_h=gspenum.h
  923. gsropt_h=gsropt.h
  924. gsxfont_h=gsxfont.h
  925. # Out of order
  926. gschar_h=gschar.h $(gsccode_h) $(gscpm_h)
  927. gscolor2_h=gscolor2.h $(gsccolor_h) $(gsuid_h) $(gxbitmap_h)
  928. gsimage_h=gsimage.h $(gsiparam_h)
  929. gsline_h=gsline.h $(gslparam_h)
  930. gspath_h=gspath.h $(gspenum_h)
  931. gsrop_h=gsrop.h $(gsropt_h)
  932.  
  933. gxbcache_h=gxbcache.h $(gxbitmap_h)
  934. gxchar_h=gxchar.h $(gschar_h)
  935. gxcindex_h=gxcindex.h
  936. gxcvalue_h=gxcvalue.h
  937. gxclio_h=gxclio.h
  938. gxclip2_h=gxclip2.h
  939. gxcolor2_h=gxcolor2.h $(gscolor2_h) $(gsrefct_h) $(gxbitmap_h)
  940. gxcoord_h=gxcoord.h $(gscoord_h)
  941. gxcpath_h=gxcpath.h
  942. gxdda_h=gxdda.h
  943. gxdevrop_h=gxdevrop.h
  944. gxdevmem_h=gxdevmem.h
  945. gxdither_h=gxdither.h
  946. gxfcmap_h=gxfcmap.h $(gsfcmap_h) $(gsuid_h)
  947. gxfont0_h=gxfont0.h
  948. gxfrac_h=gxfrac.h
  949. gxftype_h=gxftype.h
  950. gxhttile_h=gxhttile.h
  951. gxhttype_h=gxhttype.h
  952. gxiodev_h=gxiodev.h $(stat__h)
  953. gxline_h=gxline.h $(gslparam_h)
  954. gxlum_h=gxlum.h
  955. gxmatrix_h=gxmatrix.h $(gsmatrix_h)
  956. gxpaint_h=gxpaint.h
  957. gxpath_h=gxpath.h $(gscpm_h) $(gslparam_h) $(gspenum_h)
  958. gxpcache_h=gxpcache.h
  959. gxpcolor_h=gxpcolor.h $(gxpcache_h)
  960. gxsample_h=gxsample.h
  961. gxstate_h=gxstate.h
  962. gxtmap_h=gxtmap.h
  963. gxxfont_h=gxxfont.h $(gsccode_h) $(gsmatrix_h) $(gsuid_h) $(gsxfont_h)
  964. # The following are out of order because they include other files.
  965. gsdcolor_h=gsdcolor.h $(gsccolor_h) $(gxarith_h) $(gxbitmap_h) $(gxcindex_h) $(gxhttile_h)
  966. gxdcolor_h=gxdcolor.h $(gscsel_h) $(gsdcolor_h) $(gsropt_h) $(gsstruct_h)
  967. gxdevice_h=gxdevice.h $(gsdcolor_h) $(gsiparam_h) $(gsmatrix_h) \
  968.   $(gsropt_h) $(gsstruct_h) $(gsxfont_h) \
  969.   $(gxbitmap_h) $(gxcindex_h) $(gxcvalue_h) $(gxfixed_h)
  970. gxdht_h=gxdht.h $(gsrefct_h) $(gxarith_h) $(gxhttype_h)
  971. gxctable_h=gxctable.h $(gxfixed_h) $(gxfrac_h)
  972. gxfcache_h=gxfcache.h $(gsuid_h) $(gsxfont_h) $(gxbcache_h) $(gxftype_h)
  973. gxfont_h=gxfont.h $(gsfont_h) $(gsuid_h) $(gsstruct_h) $(gxftype_h)
  974. gscie_h=gscie.h $(gsrefct_h) $(gxctable_h)
  975. gscsepr_h=gscsepr.h
  976. gscspace_h=gscspace.h
  977. gxdcconv_h=gxdcconv.h $(gxfrac_h)
  978. gxfmap_h=gxfmap.h $(gsrefct_h) $(gxfrac_h) $(gxtmap_h)
  979. gxistate_h=gxistate.h $(gscsel_h) $(gsropt_h) $(gxcvalue_h) $(gxfixed_h) $(gxline_h) $(gxmatrix_h) $(gxtmap_h)
  980. gxclist_h=gxclist.h $(gscspace_h) $(gxbcache_h) $(gxclio_h) $(gxistate_h)
  981. gxcmap_h=gxcmap.h $(gscsel_h) $(gxcvalue_h) $(gxfmap_h)
  982. gxcspace_h=gxcspace.h $(gscspace_h) $(gsccolor_h) $(gscsel_h) $(gsstruct_h) $(gxfrac_h)
  983. gxht_h=gxht.h $(gsht1_h) $(gsrefct_h) $(gxhttype_h) $(gxtmap_h)
  984. gscolor_h=gscolor.h $(gxtmap_h)
  985. gsstate_h=gsstate.h $(gscolor_h) $(gscsel_h) $(gsdevice_h) $(gsht_h) $(gsline_h)
  986.  
  987. gzacpath_h=gzacpath.h
  988. gzcpath_h=gzcpath.h $(gxcpath_h)
  989. gzht_h=gzht.h $(gscsel_h) $(gxdht_h) $(gxfmap_h) $(gxht_h) $(gxhttile_h)
  990. gzline_h=gzline.h $(gxline_h)
  991. gzpath_h=gzpath.h $(gsstruct_h) $(gxpath_h)
  992. gzstate_h=gzstate.h $(gscpm_h) $(gsstate_h) $(gxdcolor_h) $(gxistate_h) $(gxstate_h)
  993.  
  994. gdevprn_h=gdevprn.h $(memory__h) $(string__h) $(gx_h) \
  995.   $(gserrors_h) $(gsmatrix_h) $(gsparam_h) $(gsutil_h) \
  996.   $(gxdevice_h) $(gxdevmem_h) $(gxclist_h)
  997.  
  998. sa85x_h=sa85x.h
  999. sbtx_h=sbtx.h
  1000. scanchar_h=scanchar.h
  1001. scommon_h=scommon.h $(gsmemory_h) $(gstypes_h) $(gsstruct_h)
  1002. sdct_h=sdct.h
  1003. shc_h=shc.h $(gsbittab_h)
  1004. siscale_h=siscale.h $(gconfigv_h)
  1005. sjpeg_h=sjpeg.h
  1006. slzwx_h=slzwx.h
  1007. spcxx_h=spcxx.h
  1008. spdiffx_h=spdiffx.h
  1009. spngpx_h=spngpx.h
  1010. srlx_h=srlx.h
  1011. sstring_h=sstring.h
  1012. strimpl_h=strimpl.h $(scommon_h) $(gstypes_h) $(gsstruct_h)
  1013. szlibx_h=szlibx.h
  1014. # Out of order
  1015. scf_h=scf.h $(shc_h)
  1016. scfx_h=scfx.h $(shc_h)
  1017. gximage_h=gximage.h $(gsiparam_h) $(gxcspace_h) $(gxdda_h) $(gxsample_h)\
  1018.  $(siscale_h) $(strimpl_h)
  1019.  
  1020. ### Executable code
  1021.  
  1022. # gconfig and gscdefs are handled specially.  Currently they go in psbase
  1023. # rather than in libcore, which is clearly wrong.
  1024. gconfig=gconfig$(CONFIG)
  1025. $(gconfig).$(OBJ): gconf.c $(GX) \
  1026.   $(gscdefs_h) $(gconfig_h) $(gxdevice_h) $(gxiodev_h) $(MAKEFILE)
  1027.     $(RM_) gconfig.h
  1028.     $(RM_) $(gconfig).c
  1029.     $(CP_) $(gconfig_h) gconfig.h
  1030.     $(CP_) $(srcdir)/gconf.c $(gconfig).c
  1031.     $(CCC) -I. -I$(srcdir) $(gconfig).c
  1032.     $(RM_) gconfig.h
  1033.     $(RM_) $(gconfig).c
  1034.  
  1035. gscdefs=gscdefs$(CONFIG)
  1036. $(gscdefs).$(OBJ): gscdef.c $(stdpre_h) $(gscdefs_h) $(gconfig_h) $(MAKEFILE)
  1037.     $(RM_) gconfig.h
  1038.     $(RM_) $(gscdefs).c
  1039.     $(CP_) $(gconfig_h) gconfig.h
  1040.     $(CP_) $(srcdir)/gscdef.c $(gscdefs).c
  1041.     $(CCC) -I. -I$(srcdir) $(gscdefs).c
  1042.     $(RM_) gconfig.h
  1043.     $(RM_) $(gscdefs).c
  1044.  
  1045. gxacpath.$(OBJ): gxacpath.c $(GXERR) \
  1046.   $(gsdcolor_h) $(gsrop_h) $(gsstruct_h) $(gsutil_h) \
  1047.   $(gxdevice_h) $(gxfixed_h) $(gxpaint_h) \
  1048.   $(gzacpath_h) $(gzcpath_h) $(gzpath_h)
  1049.  
  1050. gxbcache.$(OBJ): gxbcache.c $(GX) $(memory__h) \
  1051.   $(gsmdebug_h) $(gxbcache_h)
  1052.  
  1053. gxccache.$(OBJ): gxccache.c $(GXERR) $(gpcheck_h) \
  1054.   $(gscspace_h) $(gsimage_h) $(gsstruct_h) \
  1055.   $(gxchar_h) $(gxdevice_h) $(gxdevmem_h) $(gxfcache_h) \
  1056.   $(gxfixed_h) $(gxfont_h) $(gxhttile_h) $(gxmatrix_h) $(gxxfont_h) \
  1057.   $(gzstate_h) $(gzpath_h) $(gzcpath_h) 
  1058.  
  1059. gxccman.$(OBJ): gxccman.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1060.  $(gsbitops_h) $(gsstruct_h) $(gsutil_h) $(gxfixed_h) $(gxmatrix_h)\
  1061.  $(gxdevice_h) $(gxdevmem_h) $(gxfont_h) $(gxfcache_h) $(gxchar_h)\
  1062.  $(gxxfont_h) $(gzstate_h) $(gzpath_h)
  1063.  
  1064. gxcht.$(OBJ): gxcht.c $(GXERR) $(memory__h)\
  1065.  $(gsutil_h)\
  1066.  $(gxcmap_h) $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h)\
  1067.  $(gxmatrix_h) $(gzht_h)
  1068.  
  1069. gxcmap.$(OBJ): gxcmap.c $(GXERR) \
  1070.   $(gsccolor_h) \
  1071.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) $(gxdither_h) \
  1072.   $(gxfarith_h) $(gxfrac_h) $(gxlum_h) $(gzstate_h)
  1073.  
  1074. gxcpath.$(OBJ): gxcpath.c $(GXERR)\
  1075.  $(gscoord_h) $(gsstruct_h) $(gsutil_h)\
  1076.  $(gxdevice_h) $(gxfixed_h) $(gzpath_h) $(gzcpath_h)
  1077.  
  1078. gxdcconv.$(OBJ): gxdcconv.c $(GX) \
  1079.   $(gsdcolor_h) $(gxcmap_h) $(gxdcconv_h) $(gxdevice_h) \
  1080.   $(gxfarith_h) $(gxistate_h) $(gxlum_h)
  1081.  
  1082. gxdcolor.$(OBJ): gxdcolor.c $(GX) \
  1083.   $(gsbittab_h) $(gxdcolor_h) $(gxdevice_h)
  1084.  
  1085. gxdither.$(OBJ): gxdither.c $(GX) \
  1086.   $(gsstruct_h) $(gsdcolor_h) \
  1087.   $(gxcmap_h) $(gxdevice_h) $(gxdither_h) $(gxlum_h) $(gzht_h)
  1088.  
  1089. gxfill.$(OBJ): gxfill.c $(GXERR) $(math__h) \
  1090.   $(gsstruct_h) \
  1091.   $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxhttile_h) \
  1092.   $(gxistate_h) $(gxpaint_h) \
  1093.   $(gzcpath_h) $(gzpath_h)
  1094.  
  1095. gxht.$(OBJ): gxht.c $(GXERR) $(memory__h)\
  1096.  $(gsbitops_h) $(gsstruct_h) $(gsutil_h)\
  1097.  $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h) $(gzht_h)
  1098.  
  1099. gximage.$(OBJ): gximage.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1100.  $(gsccolor_h) $(gspaint_h) $(gsstruct_h)\
  1101.  $(gxfixed_h) $(gxfrac_h) $(gxarith_h) $(gxmatrix_h)\
  1102.  $(gxdevice_h) $(gzpath_h) $(gzstate_h)\
  1103.  $(gzcpath_h) $(gxdevmem_h) $(gximage_h) $(gdevmrop_h)
  1104.  
  1105. gximage0.$(OBJ): gximage0.c $(GXERR) $(memory__h)\
  1106.  $(gxcpath_h) $(gxdevice_h) $(gximage_h)
  1107.  
  1108. gximage1.$(OBJ): gximage1.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1109.  $(gdevmem_h) $(gsbittab_h) $(gsccolor_h) $(gspaint_h) $(gsutil_h)\
  1110.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1111.  $(gxdevmem_h) $(gxfixed_h) $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1112.  $(gzht_h) $(gzpath_h)
  1113.  
  1114. gximage2.$(OBJ): gximage2.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1115.  $(gdevmem_h) $(gsccolor_h) $(gspaint_h) $(gsutil_h)\
  1116.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1117.  $(gxdevmem_h) $(gxfixed_h) $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1118.  $(gzht_h) $(gzpath_h)
  1119.  
  1120. gxpaint.$(OBJ): gxpaint.c $(GX) \
  1121.   $(gxdevice_h) $(gxhttile_h) $(gxpaint_h) $(gxpath_h) $(gzstate_h)
  1122.  
  1123. gxpath.$(OBJ): gxpath.c $(GXERR) \
  1124.   $(gsstruct_h) $(gxfixed_h) $(gzpath_h)
  1125.  
  1126. gxpath2.$(OBJ): gxpath2.c $(GXERR) $(math__h) \
  1127.   $(gxfixed_h) $(gxarith_h) $(gzpath_h)
  1128.  
  1129. gxpcopy.$(OBJ): gxpcopy.c $(GXERR) $(math__h) $(gconfigv_h) \
  1130.   $(gxfarith_h) $(gxfixed_h) $(gzpath_h)
  1131.  
  1132. gxpdash.$(OBJ): gxpdash.c $(GX) $(math__h) \
  1133.   $(gscoord_h) $(gsline_h) $(gsmatrix_h) \
  1134.   $(gxfixed_h) $(gzline_h) $(gzpath_h)
  1135.  
  1136. gxpflat.$(OBJ): gxpflat.c $(GX)\
  1137.  $(gxarith_h) $(gxfixed_h) $(gzpath_h)
  1138.  
  1139. gxsample.$(OBJ): gxsample.c $(GX)\
  1140.  $(gxsample_h)
  1141.  
  1142. gxstroke.$(OBJ): gxstroke.c $(GXERR) $(math__h) $(gpcheck_h) \
  1143.   $(gscoord_h) $(gsdcolor_h) $(gsdevice_h) \
  1144.   $(gxdevice_h) $(gxfarith_h) $(gxfixed_h) \
  1145.   $(gxhttile_h) $(gxistate_h) $(gxmatrix_h) $(gxpaint_h) \
  1146.   $(gzcpath_h) $(gzline_h) $(gzpath_h)
  1147.  
  1148. ###### Higher-level facilities
  1149.  
  1150. gschar.$(OBJ): gschar.c $(GXERR) $(memory__h) $(string__h)\
  1151.  $(gspath_h) $(gsstruct_h) \
  1152.  $(gxfixed_h) $(gxarith_h) $(gxmatrix_h) $(gxcoord_h) $(gxdevice_h) $(gxdevmem_h) \
  1153.  $(gxfont_h) $(gxfont0_h) $(gxchar_h) $(gxfcache_h) $(gzpath_h) $(gzstate_h)
  1154.  
  1155. gscolor.$(OBJ): gscolor.c $(GXERR) \
  1156.   $(gsccolor_h) $(gsstruct_h) $(gsutil_h) \
  1157.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) $(gzstate_h)
  1158.  
  1159. gscoord.$(OBJ): gscoord.c $(GXERR) $(math__h) \
  1160.   $(gsccode_h) $(gxcoord_h) $(gxdevice_h) $(gxfarith_h) $(gxfixed_h) $(gxfont_h) \
  1161.   $(gxmatrix_h) $(gxpath_h) $(gzstate_h)
  1162.  
  1163. gsdevice.$(OBJ): gsdevice.c $(GXERR) $(ctype__h) $(memory__h) $(string__h) $(gp_h)\
  1164.  $(gscdefs_h) $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gsstruct_h)\
  1165.  $(gxcmap_h) $(gxdevice_h) $(gxdevmem_h) $(gzstate_h)
  1166.  
  1167. gsdevmem.$(OBJ): gsdevmem.c $(GXERR) $(math__h) $(memory__h) \
  1168.   $(gxarith_h) $(gxdevice_h) $(gxdevmem_h)
  1169.  
  1170. gsdparam.$(OBJ): gsdparam.c $(GXERR) $(memory__h) $(string__h) \
  1171.   $(gsparam_h) $(gxdevice_h) $(gxfixed_h)
  1172.  
  1173. gsfont.$(OBJ): gsfont.c $(GXERR) $(memory__h)\
  1174.  $(gschar_h) $(gsstruct_h) \
  1175.  $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gxfont_h) $(gxfcache_h)\
  1176.  $(gzstate_h)
  1177.  
  1178. gsht.$(OBJ): gsht.c $(GXERR) $(memory__h)\
  1179.  $(gsstruct_h) $(gsutil_h) $(gxarith_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1180.  
  1181. gshtscr.$(OBJ): gshtscr.c $(GXERR) $(math__h) \
  1182.   $(gsstruct_h) $(gxarith_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1183.  
  1184. gsimage.$(OBJ): gsimage.c $(GXERR) $(memory__h)\
  1185.   $(gscspace_h) $(gsimage_h) $(gsmatrix_h) $(gsstruct_h) \
  1186.   $(gxarith_h) $(gxdevice_h) $(gzstate_h)
  1187.  
  1188. gsimpath.$(OBJ): gsimpath.c $(GXERR) \
  1189.   $(gsmatrix_h) $(gsstate_h) $(gspath_h)
  1190.  
  1191. gsinit.$(OBJ): gsinit.c $(memory__h) $(stdio__h) \
  1192.   $(gdebug_h) $(gp_h) $(gscdefs_h) $(gslib_h) $(gsmemory_h)
  1193.  
  1194. gsiodev.$(OBJ): gsiodev.c $(GXERR) $(errno__h) $(string__h) \
  1195.   $(gp_h) $(gsparam_h) $(gxiodev_h)
  1196.  
  1197. gsline.$(OBJ): gsline.c $(GXERR) $(math__h) $(memory__h)\
  1198.  $(gsline_h) $(gxfixed_h) $(gxmatrix_h) $(gzstate_h) $(gzline_h)
  1199.  
  1200. gsmatrix.$(OBJ): gsmatrix.c $(GXERR) $(math__h) \
  1201.   $(gxfarith_h) $(gxfixed_h) $(gxmatrix_h)
  1202.  
  1203. gspaint.$(OBJ): gspaint.c $(GXERR) $(math__h) $(gpcheck_h)\
  1204.  $(gspaint_h) $(gspath_h) $(gsropt_h)\
  1205.  $(gxcpath_h) $(gxdevmem_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gxpaint_h)\
  1206.  $(gzpath_h) $(gzstate_h)
  1207.  
  1208. gsparam.$(OBJ): gsparam.c $(GXERR) $(memory__h) $(string__h)\
  1209.  $(gsparam_h) $(gsstruct_h)
  1210.  
  1211. gspath.$(OBJ): gspath.c $(GXERR) \
  1212.   $(gscoord_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  1213.   $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1214.  
  1215. gsstate.$(OBJ): gsstate.c $(GXERR) $(memory__h)\
  1216.  $(gscie_h) $(gscolor2_h) $(gscoord_h) $(gspath_h) $(gsstruct_h) $(gsutil_h) \
  1217.  $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gxpcache_h) \
  1218.  $(gzstate_h) $(gzht_h) $(gzline_h) $(gzpath_h) $(gzcpath_h)
  1219.  
  1220. ###### The internal devices
  1221.  
  1222. ### The built-in device implementations:
  1223.  
  1224. # The bounding box device is not normally a free-standing device.
  1225. # To configure it as one for testing, change SETMOD to SETDEV, and also
  1226. # define TEST in gdevbbox.c.
  1227. bbox.dev: $(LIB_MAK) $(ECHOGS_XE) gdevbbox.$(OBJ)
  1228.     $(SETMOD) bbox gdevbbox.$(OBJ)
  1229.  
  1230. gdevbbox.$(OBJ): gdevbbox.c $(GXERR) $(math__h) $(memory__h) \
  1231.   $(gdevbbox_h) $(gsdevice_h) $(gsparam_h) \
  1232.   $(gxcpath_h) $(gxdevice_h) $(gxistate_h) $(gxpaint_h) $(gxpath_h)
  1233.  
  1234. gdevddrw.$(OBJ): gdevddrw.c $(GXERR) $(math__h) $(gpcheck_h) \
  1235.   $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h)
  1236.  
  1237. gdevdflt.$(OBJ): gdevdflt.c $(GXERR) $(gpcheck_h)\
  1238.  $(gsbittab_h) $(gsropt_h)\
  1239.  $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)
  1240.  
  1241. gdevnfwd.$(OBJ): gdevnfwd.c $(GX) \
  1242.   $(gxdevice_h)
  1243.  
  1244. # The render/RGB device is only here as an example, but we can configure
  1245. # it as a real device for testing.
  1246. rrgb.dev: $(LIB_MAK) $(ECHOGS_XE) gdevrrgb.$(OBJ) page.dev
  1247.     $(SETPDEV) rrgb gdevrrgb.$(OBJ)
  1248.  
  1249. gdevrrgb.$(OBJ): gdevrrgb.c $(AK)\
  1250.  $(gdevprn_h)
  1251.  
  1252. ### The memory devices:
  1253.  
  1254. gdevabuf.$(OBJ): gdevabuf.c $(GXERR) $(memory__h)\
  1255.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1256.  
  1257. gdevmem.$(OBJ): gdevmem.c $(GXERR) $(memory__h)\
  1258.  $(gsstruct_h) $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1259.  
  1260. gdevm1.$(OBJ): gdevm1.c $(GX) $(memory__h) $(gsrop_h)\
  1261.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1262.  
  1263. gdevm2.$(OBJ): gdevm2.c $(GX) $(memory__h)\
  1264.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1265.  
  1266. gdevm4.$(OBJ): gdevm4.c $(GX) $(memory__h)\
  1267.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1268.  
  1269. gdevm8.$(OBJ): gdevm8.c $(GX) $(memory__h)\
  1270.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1271.  
  1272. gdevm16.$(OBJ): gdevm16.c $(GX) $(memory__h)\
  1273.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1274.  
  1275. gdevm24.$(OBJ): gdevm24.c $(GX) $(memory__h)\
  1276.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1277.  
  1278. gdevm32.$(OBJ): gdevm32.c $(GX) $(memory__h)\
  1279.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1280.  
  1281. gdevmpla.$(OBJ): gdevmpla.c $(GX) $(memory__h)\
  1282.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1283.  
  1284. # Create a pseudo-"feature" for the entire graphics library.
  1285.  
  1286. LIB1s=gsalloc.$(OBJ) gsbitops.$(OBJ) gsbittab.$(OBJ)
  1287. LIB2s=gschar.$(OBJ) gscolor.$(OBJ) gscoord.$(OBJ) gsdevice.$(OBJ) gsdevmem.$(OBJ)
  1288. LIB3s=gsdparam.$(OBJ) gsfont.$(OBJ) gsht.$(OBJ) gshtscr.$(OBJ)
  1289. LIB4s=gsimage.$(OBJ) gsimpath.$(OBJ) gsinit.$(OBJ) gsiodev.$(OBJ)
  1290. LIB5s=gsline.$(OBJ) gsmatrix.$(OBJ) gsmemory.$(OBJ) gsmisc.$(OBJ)
  1291. LIB6s=gspaint.$(OBJ) gsparam.$(OBJ) gspath.$(OBJ) gsstate.$(OBJ) gsutil.$(OBJ)
  1292. LIB1x=gxacpath.$(OBJ) gxbcache.$(OBJ)
  1293. LIB2x=gxccache.$(OBJ) gxccman.$(OBJ) gxcht.$(OBJ) gxcmap.$(OBJ) gxcpath.$(OBJ)
  1294. LIB3x=gxdcconv.$(OBJ) gxdcolor.$(OBJ) gxdither.$(OBJ) gxfill.$(OBJ) gxht.$(OBJ)
  1295. LIB4x=gximage.$(OBJ) gximage0.$(OBJ) gximage1.$(OBJ) gximage2.$(OBJ)
  1296. LIB5x=gxpaint.$(OBJ) gxpath.$(OBJ) gxpath2.$(OBJ) gxpcopy.$(OBJ)
  1297. LIB6x=gxpdash.$(OBJ) gxpflat.$(OBJ) gxsample.$(OBJ) gxstroke.$(OBJ)
  1298. LIB1d=gdevabuf.$(OBJ) gdevddrw.$(OBJ) gdevdflt.$(OBJ) gdevnfwd.$(OBJ)
  1299. LIB2d=gdevmem.$(OBJ) gdevm1.$(OBJ) gdevm2.$(OBJ) gdevm4.$(OBJ) gdevm8.$(OBJ)
  1300. LIB3d=gdevm16.$(OBJ) gdevm24.$(OBJ) gdevm32.$(OBJ) gdevmpla.$(OBJ)
  1301. LIBs=$(LIB1s) $(LIB2s) $(LIB3s) $(LIB4s) $(LIB5s) $(LIB6s)
  1302. LIBx=$(LIB1x) $(LIB2x) $(LIB3x) $(LIB4x) $(LIB5x) $(LIB6x)
  1303. LIBd=$(LIB1d) $(LIB2d) $(LIB3d)
  1304. LIB_ALL=$(LIBs) $(LIBx) $(LIBd)
  1305. libs.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBs)
  1306.     $(EXP)echogs -w libs.dev $(LIB1s)
  1307.     $(EXP)echogs -a libs.dev $(LIB2s)
  1308.     $(EXP)echogs -a libs.dev $(LIB3s)
  1309.     $(EXP)echogs -a libs.dev $(LIB4s)
  1310.     $(EXP)echogs -a libs.dev $(LIB5s)
  1311.     $(EXP)echogs -a libs.dev $(LIB6s)
  1312.     $(ADDMOD) libs -init gscolor
  1313.  
  1314. libx.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBx)
  1315.     $(EXP)echogs -w libx.dev $(LIB1x)
  1316.     $(EXP)echogs -a libx.dev $(LIB2x)
  1317.     $(EXP)echogs -a libx.dev $(LIB3x)
  1318.     $(EXP)echogs -a libx.dev $(LIB4x)
  1319.     $(EXP)echogs -a libx.dev $(LIB5x)
  1320.     $(EXP)echogs -a libx.dev $(LIB6x)
  1321.     $(ADDMOD) libx -init gximage1 gximage2
  1322.  
  1323. libd.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBd)
  1324.     $(EXP)echogs -w libd.dev $(LIB1d)
  1325.     $(EXP)echogs -a libd.dev $(LIB2d)
  1326.     $(EXP)echogs -a libd.dev $(LIB3d)
  1327.  
  1328. # roplib shouldn't be required....
  1329. libcore.dev: $(LIB_MAK) $(ECHOGS_XE)\
  1330.   libs.dev libx.dev libd.dev iscale.dev roplib.dev
  1331.     $(SETMOD) libcore
  1332.     $(ADDMOD) libcore -dev nullpage
  1333.     $(ADDMOD) libcore -include libs libx libd iscale roplib
  1334.  
  1335. # ---------------- Stream support ---------------- #
  1336. # Currently the only thing in the library that uses this is clists.
  1337.  
  1338. stream_h=stream.h $(scommon_h)
  1339.  
  1340. stream.$(OBJ): stream.c $(AK) $(stdio__h) $(memory__h) \
  1341.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1342.  
  1343. # ---------------- File streams ---------------- #
  1344. # Currently only the high-level drivers use these, but more drivers will
  1345. # probably use them eventually.
  1346.  
  1347. sfile_=sfx$(FILE_IMPLEMENTATION).$(OBJ)
  1348. sfile.dev: $(LIB_MAK) $(ECHOGS_XE) $(sfile_)
  1349.     $(SETMOD) sfile $(sfile_)
  1350.  
  1351. sfxstdio.$(OBJ): sfxstdio.c $(AK) $(stdio__h) $(memory__h) \
  1352.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1353.  
  1354. sfxfd.$(OBJ): sfxfd.c $(AK) $(stdio__h) $(errno__h) $(memory__h) \
  1355.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1356.  
  1357. sfxboth.$(OBJ): sfxboth.c sfxstdio.c sfxfd.c
  1358.  
  1359. # ---------------- CCITTFax filters ---------------- #
  1360. # These are used by clists, some drivers, and Level 2 in general.
  1361.  
  1362. cfe_=scfe.$(OBJ) scfetab.$(OBJ) shc.$(OBJ)
  1363. cfe.dev: $(LIB_MAK) $(ECHOGS_XE) $(cfe_)
  1364.     $(SETMOD) cfe $(cfe_)
  1365.  
  1366. scfe.$(OBJ): scfe.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1367.   $(scf_h) $(strimpl_h) $(scfx_h)
  1368.  
  1369. scfetab.$(OBJ): scfetab.c $(AK) $(std_h) $(scommon_h) $(scf_h)
  1370.  
  1371. shc.$(OBJ): shc.c $(AK) $(std_h) $(scommon_h) $(shc_h)
  1372.  
  1373. cfd_=scfd.$(OBJ) scfdtab.$(OBJ)
  1374. cfd.dev: $(LIB_MAK) $(ECHOGS_XE) $(cfd_)
  1375.     $(SETMOD) cfd $(cfd_)
  1376.  
  1377. scfd.$(OBJ): scfd.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1378.   $(scf_h) $(strimpl_h) $(scfx_h)
  1379.  
  1380. scfdtab.$(OBJ): scfdtab.c $(AK) $(std_h) $(scommon_h) $(scf_h)
  1381.  
  1382. # ---------------- DCT (JPEG) filters ---------------- #
  1383. # These are used by Level 2, and by the JPEG-writing driver.
  1384.  
  1385. # Common code
  1386.  
  1387. sdctc_=sdctc.$(OBJ) sjpegc.$(OBJ)
  1388.  
  1389. sdctc.$(OBJ): sdctc.c $(AK) $(stdio__h)\
  1390.  $(sdct_h) $(strimpl_h)\
  1391.  jpeglib.h
  1392.  
  1393. sjpegc.$(OBJ): sjpegc.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1394.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h) \
  1395.  jerror.h jpeglib.h
  1396.  
  1397. # Encoding (compression)
  1398.  
  1399. sdcte_=$(sdctc_) sdcte.$(OBJ) sjpege.$(OBJ)
  1400. sdcte.dev: $(LIB_MAK) $(ECHOGS_XE) $(sdcte_) jpege.dev
  1401.     $(SETMOD) sdcte $(sdcte_)
  1402.     $(ADDMOD) sdcte -include jpege
  1403.  
  1404. sdcte.$(OBJ): sdcte.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1405.   $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  1406.   jerror.h jpeglib.h
  1407.  
  1408. sjpege.$(OBJ): sjpege.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1409.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h) \
  1410.  jerror.h jpeglib.h
  1411.  
  1412. # Decoding (decompression)
  1413.  
  1414. sdctd_=$(sdctc_) sdctd.$(OBJ) sjpegd.$(OBJ)
  1415. sdctd.dev: $(LIB_MAK) $(ECHOGS_XE) $(sdctd_) jpegd.dev
  1416.     $(SETMOD) sdctd $(sdctd_)
  1417.     $(ADDMOD) sdctd -include jpegd
  1418.  
  1419. sdctd.$(OBJ): sdctd.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1420.   $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  1421.   jerror.h jpeglib.h
  1422.  
  1423. sjpegd.$(OBJ): sjpegd.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1424.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h)\
  1425.  jerror.h jpeglib.h
  1426.  
  1427. # ---------------- LZW filters ---------------- #
  1428. # These are used by Level 2 in general.
  1429.  
  1430. slzwe_=slzwce
  1431. #slzwe_=slzwe
  1432. lzwe_=$(slzwe_).$(OBJ) slzwc.$(OBJ)
  1433. lzwe.dev: $(LIB_MAK) $(ECHOGS_XE) $(lzwe_)
  1434.     $(SETMOD) lzwe $(lzwe_)
  1435.  
  1436. # We need slzwe.dev as a synonym for lzwe.dev for BAND_LIST_STORAGE = memory.
  1437. slzwe.dev: lzwe.dev
  1438.     $(CP_) lzwe.dev slzwe.dev
  1439.  
  1440. slzwce.$(OBJ): slzwce.c $(AK) $(stdio__h) $(gdebug_h)\
  1441.   $(slzwx_h) $(strimpl_h)
  1442.  
  1443. slzwe.$(OBJ): slzwe.c $(AK) $(stdio__h) $(gdebug_h)\
  1444.   $(slzwx_h) $(strimpl_h)
  1445.  
  1446. slzwc.$(OBJ): slzwc.c $(AK) $(std_h)\
  1447.   $(slzwx_h) $(strimpl_h)
  1448.  
  1449. lzwd_=slzwd.$(OBJ) slzwc.$(OBJ)
  1450. lzwd.dev: $(LIB_MAK) $(ECHOGS_XE) $(lzwd_)
  1451.     $(SETMOD) lzwd $(lzwd_)
  1452.  
  1453. # We need slzwd.dev as a synonym for lzwd.dev for BAND_LIST_STORAGE = memory.
  1454. slzwd.dev: lzwd.dev
  1455.     $(CP_) lzwd.dev slzwd.dev
  1456.  
  1457. slzwd.$(OBJ): slzwd.c $(AK) $(stdio__h) $(gdebug_h)\
  1458.   $(slzwx_h) $(strimpl_h)
  1459.  
  1460. # ---------------- PCX decoding filter ---------------- #
  1461. # This is an adhoc filter not used by anything in the standard configuration.
  1462.  
  1463. pcxd_=spcxd.$(OBJ)
  1464. pcxd.dev: $(LIB_MAK) $(ECHOGS_XE) $(pcxd_)
  1465.     $(SETMOD) pcxd $(pcxd_)
  1466.  
  1467. spcxd.$(OBJ): spcxd.c $(AK) $(stdio__h) $(memory__h) \
  1468.   $(spcxx_h) $(strimpl_h)
  1469.  
  1470. # ---------------- Pixel-difference filters ---------------- #
  1471. # The Predictor facility of the LZW and Flate filters uses these.
  1472.  
  1473. pdiff_=spdiff.$(OBJ)
  1474. pdiff.dev: $(LIB_MAK) $(ECHOGS_XE) $(pdiff_)
  1475.     $(SETMOD) pdiff $(pdiff_)
  1476.  
  1477. spdiff.$(OBJ): spdiff.c $(AK) $(stdio__h)\
  1478.  $(spdiffx_h) $(strimpl_h)
  1479.  
  1480. # ---------------- PNG pixel prediction filters ---------------- #
  1481. # The Predictor facility of the LZW and Flate filters uses these.
  1482.  
  1483. pngp_=spngp.$(OBJ)
  1484. pngp.dev: $(LIB_MAK) $(ECHOGS_XE) $(pngp_)
  1485.     $(SETMOD) pngp $(pngp_)
  1486.  
  1487. spngp.$(OBJ): spngp.c $(AK) $(memory__h)\
  1488.   $(spngpx_h) $(strimpl_h)
  1489.  
  1490. # ---------------- RunLength filters ---------------- #
  1491. # These are used by clists and also by Level 2 in general.
  1492.  
  1493. rle_=srle.$(OBJ)
  1494. rle.dev: $(LIB_MAK) $(ECHOGS_XE) $(rle_)
  1495.     $(SETMOD) rle $(rle_)
  1496.  
  1497. srle.$(OBJ): srle.c $(AK) $(stdio__h) $(memory__h) \
  1498.   $(srlx_h) $(strimpl_h)
  1499.  
  1500. rld_=srld.$(OBJ)
  1501. rld.dev: $(LIB_MAK) $(ECHOGS_XE) $(rld_)
  1502.     $(SETMOD) rld $(rld_)
  1503.  
  1504. srld.$(OBJ): srld.c $(AK) $(stdio__h) $(memory__h) \
  1505.   $(srlx_h) $(strimpl_h)
  1506.  
  1507. # ---------------- String encoding/decoding filters ---------------- #
  1508. # These are used by the PostScript and PDF writers, and also by the
  1509. # PostScript interpreter.
  1510.  
  1511. scantab.$(OBJ): scantab.c $(AK) $(stdpre_h)\
  1512.  $(scanchar_h) $(scommon_h)
  1513.  
  1514. sfilter2.$(OBJ): sfilter2.c $(AK) $(memory__h) $(stdio__h)\
  1515.  $(sa85x_h) $(scanchar_h) $(sbtx_h) $(strimpl_h)
  1516.  
  1517. sstring.$(OBJ): sstring.c $(AK) $(stdio__h) $(memory__h) $(string__h)\
  1518.  $(scanchar_h) $(sstring_h) $(strimpl_h)
  1519.  
  1520. # ---------------- zlib filters ---------------- #
  1521. # These are used by clists and are also available as filters.
  1522.  
  1523. szlibc_=szlibc.$(OBJ)
  1524.  
  1525. szlibc.$(OBJ): szlibc.c $(AK) $(std_h) \
  1526.   $(gsmemory_h) $(gsstruct_h) $(gstypes_h) $(strimpl_h) $(szlibx_h)
  1527.     $(CCCZ) $(srcdir)/szlibc.c
  1528.  
  1529. szlibe_=$(szlibc_) szlibe.$(OBJ)
  1530. szlibe.dev: $(LIB_MAK) $(ECHOGS_XE) zlibe.dev $(szlibe_)
  1531.     $(SETMOD) szlibe $(szlibe_)
  1532.     $(ADDMOD) szlibe -include zlibe
  1533.  
  1534. szlibe.$(OBJ): szlibe.c $(AK) $(std_h) \
  1535.   $(gsmemory_h) $(strimpl_h) $(szlibx_h)
  1536.     $(CCCZ) $(srcdir)/szlibe.c
  1537.  
  1538. szlibd_=$(szlibc_) szlibd.$(OBJ)
  1539. szlibd.dev: $(LIB_MAK) $(ECHOGS_XE) zlibd.dev $(szlibd_)
  1540.     $(SETMOD) szlibd $(szlibd_)
  1541.     $(ADDMOD) szlibd -include zlibd
  1542.  
  1543. szlibd.$(OBJ): szlibd.c $(AK) $(std_h) \
  1544.   $(gsmemory_h) $(strimpl_h) $(szlibx_h)
  1545.     $(CCCZ) $(srcdir)/szlibd.c
  1546.  
  1547. # ---------------- Command lists ---------------- #
  1548.  
  1549. gxcldev_h=gxcldev.h $(gxclist_h) $(gsropt_h) $(gxht_h) $(gxtmap_h) $(gxdht_h)\
  1550.   $(strimpl_h) $(scfx_h) $(srlx_h)
  1551. gxclpage_h=gxclpage.h $(gxclio_h)
  1552. gxclpath_h=gxclpath.h $(gxfixed_h)
  1553.  
  1554. # Command list package.  Currently the higher-level facilities are required,
  1555. # but eventually they will be optional.
  1556. clist.dev: $(LIB_MAK) $(ECHOGS_XE) clbase.dev clpath.dev
  1557.     $(SETMOD) clist -include clbase clpath
  1558.  
  1559. # Base command list facility.
  1560. clbase1_=gxclist.$(OBJ) gxclbits.$(OBJ) gxclpage.$(OBJ)
  1561. clbase2_=gxclread.$(OBJ) gxclrect.$(OBJ) stream.$(OBJ)
  1562. clbase_=$(clbase1_) $(clbase2_)
  1563. clbase.dev: $(LIB_MAK) $(ECHOGS_XE) $(clbase_) cl$(BAND_LIST_STORAGE).dev \
  1564.   cfe.dev cfd.dev rle.dev rld.dev
  1565.     $(SETMOD) clbase $(clbase1_)
  1566.     $(ADDMOD) clbase -obj $(clbase2_)
  1567.     $(ADDMOD) clbase -include cl$(BAND_LIST_STORAGE) cfe cfd rle rld
  1568.  
  1569. gdevht_h=gdevht.h $(gzht_h)
  1570.  
  1571. gdevht.$(OBJ): gdevht.c $(GXERR) \
  1572.   $(gdevht_h) $(gxdcconv_h) $(gxdcolor_h) $(gxdevice_h) $(gxdither_h)
  1573.  
  1574. gxclist.$(OBJ): gxclist.c $(GXERR) $(memory__h) $(gp_h) $(gpcheck_h)\
  1575.  $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h)
  1576.  
  1577. gxclbits.$(OBJ): gxclbits.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1578.  $(gsbitops_h) $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h) $(gxfmap_h)
  1579.  
  1580. gxclpage.$(OBJ): gxclpage.c $(AK)\
  1581.  $(gdevprn_h) $(gxcldev_h) $(gxclpage_h)
  1582.  
  1583. # (gxclread shouldn't need gxclpath.h)
  1584. gxclread.$(OBJ): gxclread.c $(GXERR) $(memory__h) $(gp_h) $(gpcheck_h)\
  1585.  $(gdevht_h)\
  1586.  $(gsbitops_h) $(gscoord_h) $(gsdevice_h) $(gsstate_h)\
  1587.  $(gxcldev_h) $(gxclpath_h) $(gxcmap_h) $(gxcspace_h) $(gxdcolor_h)\
  1588.  $(gxdevice_h) $(gxdevmem_h)\
  1589.  $(gxhttile_h) $(gxpaint_h) $(gzacpath_h) $(gzcpath_h) $(gzpath_h)\
  1590.  $(stream_h) $(strimpl_h)
  1591.  
  1592. gxclrect.$(OBJ): gxclrect.c $(GXERR)\
  1593.  $(gsutil_h) $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h)
  1594.  
  1595. # Higher-level command list facilities.
  1596. clpath_=gxclimag.$(OBJ) gxclpath.$(OBJ)
  1597. clpath.dev: $(LIB_MAK) $(ECHOGS_XE) $(clpath_) psl2cs.dev
  1598.     $(SETMOD) clpath $(clpath_)
  1599.     $(ADDMOD) clpath -include psl2cs
  1600.     $(ADDMOD) clpath -init climag clpath
  1601.  
  1602. gxclimag.$(OBJ): gxclimag.c $(GXERR) $(math__h) $(memory__h)\
  1603.  $(gscspace_h)\
  1604.  $(gxarith_h) $(gxcldev_h) $(gxclpath_h) $(gxdevice_h) $(gxdevmem_h)\
  1605.  $(gxfmap_h)\
  1606.  $(siscale_h) $(strimpl_h)
  1607.  
  1608. gxclpath.$(OBJ): gxclpath.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1609.  $(gxcldev_h) $(gxclpath_h) $(gxcolor2_h) $(gxdevice_h) $(gxdevmem_h)\
  1610.  $(gxpaint_h) \
  1611.  $(gzcpath_h) $(gzpath_h)
  1612.  
  1613. # Implement band lists on files.
  1614.  
  1615. clfile_=gxclfile.$(OBJ)
  1616. clfile.dev: $(LIB_MAK) $(ECHOGS_XE) $(clfile_)
  1617.     $(SETMOD) clfile $(clfile_)
  1618.  
  1619. gxclfile.$(OBJ): gxclfile.c $(stdio__h) $(string__h) \
  1620.   $(gp_h) $(gsmemory_h) $(gserror_h) $(gserrors_h) $(gxclio_h)
  1621.  
  1622. # Implement band lists in memory (RAM).
  1623.  
  1624. clmemory_=gxclmem.$(OBJ) gxcl$(BAND_LIST_COMPRESSOR).$(OBJ)
  1625. clmemory.dev: $(LIB_MAK) $(ECHOGS_XE) $(clmemory_) s$(BAND_LIST_COMPRESSOR)e.dev s$(BAND_LIST_COMPRESSOR)d.dev
  1626.     $(SETMOD) clmemory $(clmemory_)
  1627.     $(ADDMOD) clmemory -include s$(BAND_LIST_COMPRESSOR)e s$(BAND_LIST_COMPRESSOR)d
  1628.     $(ADDMOD) clmemory -init cl_$(BAND_LIST_COMPRESSOR)
  1629.  
  1630. gxclmem_h=gxclmem.h $(gxclio_h) $(strimpl_h)
  1631.  
  1632. gxclmem.$(OBJ): gxclmem.c $(GXERR) $(LIB_MAK) $(memory__h) \
  1633.   $(gxclmem_h)
  1634.  
  1635. # Implement the compression method for RAM-based band lists.
  1636.  
  1637. gxcllzw.$(OBJ): gxcllzw.c $(std_h)\
  1638.  $(gsmemory_h) $(gstypes_h) $(gxclmem_h) $(slzwx_h)
  1639.  
  1640. gxclzlib.$(OBJ): gxclzlib.c $(std_h)\
  1641.  $(gsmemory_h) $(gstypes_h) $(gxclmem_h) $(szlibx_h)
  1642.     $(CCCZ) -I. $(srcdir)/gxclzlib.c
  1643.  
  1644. # ---------------- Page devices ---------------- #
  1645. # We include this here, rather than in devs.mak, because it is more like
  1646. # a feature than a simple device.
  1647.  
  1648. page_=gdevprn.$(OBJ)
  1649. page.dev: $(LIB_MAK) $(ECHOGS_XE) $(page_) clist.dev
  1650.     $(SETMOD) page $(page_)
  1651.     $(ADDMOD) page -include clist
  1652.  
  1653. gdevprn.$(OBJ): gdevprn.c $(ctype__h) \
  1654.   $(gdevprn_h) $(gp_h) $(gsparam_h) $(gxclio_h)
  1655.  
  1656. # ---------------- Vector devices ---------------- #
  1657. # We include this here for the same reasons as page.dev.
  1658.  
  1659. gdevvec_h=gdevvec.h $(gdevbbox_h) $(gsropt_h) $(gxdevice_h) $(gxistate_h) $(stream_h)
  1660.  
  1661. vector_=gdevvec.$(OBJ)
  1662. vector.dev: $(LIB_MAK) $(ECHOGS_XE) $(vector_) bbox.dev
  1663.     $(SETMOD) vector $(vector_)
  1664.     $(ADDMOD) vector -include bbox
  1665.  
  1666. gdevvec.$(OBJ): gdevvec.c $(GXERR) $(math__h) $(memory__h) $(string__h)\
  1667.  $(gdevvec_h) $(gp_h) $(gscspace_h) $(gsparam_h) $(gsutil_h)\
  1668.  $(gxdcolor_h) $(gxfixed_h) $(gxpaint_h)\
  1669.  $(gzcpath_h) $(gzpath_h)
  1670.  
  1671. # ---------------- Image scaling filter ---------------- #
  1672.  
  1673. iscale_=siscale.$(OBJ)
  1674. iscale.dev: $(LIB_MAK) $(ECHOGS_XE) $(iscale_)
  1675.     $(SETMOD) iscale $(iscale_)
  1676.  
  1677. siscale.$(OBJ): siscale.c $(AK) $(math__h) $(memory__h) $(stdio__h) \
  1678.   $(siscale_h) $(strimpl_h)
  1679.  
  1680. # ---------------- RasterOp et al ---------------- #
  1681. # Currently this module is required, but it should be optional.
  1682.  
  1683. roplib_=gdevmrop.$(OBJ) gsrop.$(OBJ) gsroptab.$(OBJ)
  1684. roplib.dev: $(LIB_MAK) $(ECHOGS_XE) $(roplib_)
  1685.     $(SETMOD) roplib $(roplib_)
  1686.     $(ADDMOD) roplib -init roplib
  1687.  
  1688. gdevrun.$(OBJ): gdevrun.c $(GXERR) $(memory__h) \
  1689.   $(gxdevice_h) $(gxdevmem_h)
  1690.  
  1691. gdevmrop.$(OBJ): gdevmrop.c $(GXERR) $(memory__h) \
  1692.   $(gsbittab_h) $(gsropt_h) \
  1693.   $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) $(gxdevrop_h) \
  1694.   $(gdevmrop_h)
  1695.  
  1696. gsrop.$(OBJ): gsrop.c $(GXERR) \
  1697.   $(gsrop_h) $(gzstate_h)
  1698.  
  1699. gsroptab.$(OBJ): gsroptab.c $(stdpre_h) $(gsropt_h)
  1700.     $(CCLEAF) $(srcdir)/gsroptab.c
  1701.  
  1702. # -------- Composite (PostScript Type 0) font support -------- #
  1703.  
  1704. cmaplib_=gsfcmap.$(OBJ)
  1705. cmaplib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cmaplib_)
  1706.     $(SETMOD) cmaplib $(cmaplib_)
  1707.  
  1708. gsfcmap.$(OBJ): gsfcmap.c $(GXERR)\
  1709.  $(gsstruct_h) $(gxfcmap_h)
  1710.  
  1711. psf0lib_=gschar0.$(OBJ) gsfont0.$(OBJ)
  1712. psf0lib.dev: $(LIB_MAK) $(ECHOGS_XE) cmaplib.dev $(psf0lib_)
  1713.     $(SETMOD) psf0lib $(psf0lib_)
  1714.     $(ADDMOD) psf0lib -include cmaplib
  1715.  
  1716. gschar0.$(OBJ): gschar0.c $(GXERR) $(memory__h)\
  1717.  $(gsstruct_h) $(gxfixed_h) $(gxdevice_h) $(gxdevmem_h)\
  1718.  $(gsfcmap_h) $(gxfont_h) $(gxfont0_h) $(gxchar_h)
  1719.  
  1720. gsfont0.$(OBJ): gsfont0.c $(GXERR) $(memory__h)\
  1721.  $(gsmatrix_h) $(gsstruct_h) $(gxfixed_h) $(gxdevmem_h) $(gxfcache_h)\
  1722.  $(gxfont_h) $(gxfont0_h) $(gxchar_h) $(gxdevice_h)
  1723.  
  1724. # ---------------- Pattern color ---------------- #
  1725.  
  1726. patlib_=gspcolor.$(OBJ) gxclip2.$(OBJ) gxpcmap.$(OBJ)
  1727. patlib.dev: $(LIB_MAK) $(ECHOGS_XE) cmyklib.dev psl2cs.dev $(patlib_)
  1728.     $(SETMOD) patlib -include cmyklib psl2cs
  1729.     $(ADDMOD) patlib -obj $(patlib_)
  1730.  
  1731. gspcolor.$(OBJ): gspcolor.c $(GXERR) $(math__h) \
  1732.   $(gsimage_h) $(gspath_h) $(gsrop_h) $(gsstruct_h) $(gsutil_h) \
  1733.   $(gxarith_h) $(gxcolor2_h) $(gxcoord_h) $(gxclip2_h) $(gxcspace_h) \
  1734.   $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) \
  1735.   $(gxfixed_h) $(gxmatrix_h) $(gxpath_h) $(gxpcolor_h) $(gzstate_h)
  1736.  
  1737. gxclip2.$(OBJ): gxclip2.c $(GXERR) $(memory__h) \
  1738.   $(gsstruct_h) $(gxclip2_h) $(gxdevice_h) $(gxdevmem_h)
  1739.  
  1740. gxpcmap.$(OBJ): gxpcmap.c $(GXERR) $(math__h) $(memory__h)\
  1741.  $(gsstruct_h) $(gsutil_h)\
  1742.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)\
  1743.  $(gxfixed_h) $(gxmatrix_h) $(gxpcolor_h)\
  1744.  $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1745.  
  1746. # ---------------- PostScript Type 1 (and Type 4) fonts ---------------- #
  1747.  
  1748. type1lib_=gxtype1.$(OBJ) gxhint1.$(OBJ) gxhint2.$(OBJ) gxhint3.$(OBJ)
  1749.  
  1750. gscrypt1_h=gscrypt1.h
  1751. gstype1_h=gstype1.h
  1752. gxfont1_h=gxfont1.h
  1753. gxop1_h=gxop1.h
  1754. gxtype1_h=gxtype1.h $(gscrypt1_h) $(gstype1_h) $(gxop1_h)
  1755.  
  1756. gxtype1.$(OBJ): gxtype1.c $(GXERR) $(math__h)\
  1757.  $(gsccode_h) $(gsline_h) $(gsstruct_h)\
  1758.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h)\
  1759.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1760.  $(gzpath_h)
  1761.  
  1762. gxhint1.$(OBJ): gxhint1.c $(GXERR)\
  1763.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1764.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)
  1765.  
  1766. gxhint2.$(OBJ): gxhint2.c $(GXERR) $(memory__h)\
  1767.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1768.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)
  1769.  
  1770. gxhint3.$(OBJ): gxhint3.c $(GXERR) $(math__h)\
  1771.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1772.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)\
  1773.  $(gzpath_h)
  1774.  
  1775. # Type 1 charstrings
  1776.  
  1777. psf1lib_=gstype1.$(OBJ)
  1778. psf1lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psf1lib_) $(type1lib_)
  1779.     $(SETMOD) psf1lib $(psf1lib_)
  1780.     $(ADDMOD) psf1lib $(type1lib_)
  1781.     $(ADDMOD) psf1lib -init gstype1
  1782.  
  1783. gstype1.$(OBJ): gstype1.c $(GXERR) $(math__h) $(memory__h)\
  1784.  $(gsstruct_h)\
  1785.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1786.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1787.  $(gzpath_h)
  1788.  
  1789. # Type 2 charstrings
  1790.  
  1791. psf2lib_=gstype2.$(OBJ)
  1792. psf2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psf2lib_) $(type1lib_)
  1793.     $(SETMOD) psf2lib $(psf2lib_)
  1794.     $(ADDMOD) psf2lib $(type1lib_)
  1795.     $(ADDMOD) psf2lib -init gstype2
  1796.  
  1797. gstype2.$(OBJ): gstype2.c $(GXERR) $(math__h) $(memory__h)\
  1798.  $(gsstruct_h)\
  1799.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1800.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1801.  $(gzpath_h)
  1802.  
  1803. # ---------------- TrueType and PostScript Type 42 fonts ---------------- #
  1804.  
  1805. ttflib_=gstype42.$(OBJ)
  1806. ttflib.dev: $(LIB_MAK) $(ECHOGS_XE) $(ttflib_)
  1807.     $(SETMOD) ttflib $(ttflib_)
  1808.  
  1809. gxfont42_h=gxfont42.h
  1810.  
  1811. gstype42.$(OBJ): gstype42.c $(GXERR) $(memory__h) \
  1812.   $(gsccode_h) $(gsmatrix_h) $(gsstruct_h) \
  1813.   $(gxfixed_h) $(gxfont_h) $(gxfont42_h) $(gxistate_h) $(gxpath_h)
  1814.  
  1815. # -------- Level 1 color extensions (CMYK color and colorimage) -------- #
  1816.  
  1817. cmyklib_=gscolor1.$(OBJ) gsht1.$(OBJ)
  1818. cmyklib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cmyklib_)
  1819.     $(SETMOD) cmyklib $(cmyklib_)
  1820.     $(ADDMOD) cmyklib -init gscolor1
  1821.  
  1822. gscolor1.$(OBJ): gscolor1.c $(GXERR) \
  1823.   $(gsccolor_h) $(gscolor1_h) $(gsstruct_h) $(gsutil_h) \
  1824.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) \
  1825.   $(gzstate_h)
  1826.  
  1827. gsht1.$(OBJ): gsht1.c $(GXERR) $(memory__h)\
  1828.  $(gsstruct_h) $(gsutil_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1829.  
  1830. colimlib_=gximage3.$(OBJ)
  1831. colimlib.dev: $(LIB_MAK) $(ECHOGS_XE) $(colimlib_)
  1832.     $(SETMOD) colimlib $(colimlib_)
  1833.     $(ADDMOD) colimlib -init gximage3
  1834.  
  1835. gximage3.$(OBJ): gximage3.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1836.  $(gsccolor_h) $(gspaint_h)\
  1837.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcconv_h) $(gxdcolor_h)\
  1838.  $(gxdevice_h) $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h)\
  1839.  $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1840.  $(gzpath_h) $(gzstate_h)
  1841.  
  1842. # ---------------- HSB color ---------------- #
  1843.  
  1844. hsblib_=gshsb.$(OBJ)
  1845. hsblib.dev: $(LIB_MAK) $(ECHOGS_XE) $(hsblib_)
  1846.     $(SETMOD) hsblib $(hsblib_)
  1847.  
  1848. gshsb.$(OBJ): gshsb.c $(GX) \
  1849.   $(gscolor_h) $(gshsb_h) $(gxfrac_h)
  1850.  
  1851. # ---- Level 1 path miscellany (arcs, pathbbox, path enumeration) ---- #
  1852.  
  1853. path1lib_=gspath1.$(OBJ)
  1854. path1lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(path1lib_)
  1855.     $(SETMOD) path1lib $(path1lib_)
  1856.  
  1857. gspath1.$(OBJ): gspath1.c $(GXERR) $(math__h) \
  1858.   $(gscoord_h) $(gspath_h) $(gsstruct_h) \
  1859.   $(gxfarith_h) $(gxfixed_h) $(gxmatrix_h) \
  1860.   $(gzstate_h) $(gzpath_h)
  1861.  
  1862. # --------------- Level 2 color space and color image support --------------- #
  1863.  
  1864. psl2cs_=gscolor2.$(OBJ)
  1865. psl2cs.dev: $(LIB_MAK) $(ECHOGS_XE) $(psl2cs_)
  1866.     $(SETMOD) psl2cs $(psl2cs_)
  1867.  
  1868. gscolor2.$(OBJ): gscolor2.c $(GXERR) \
  1869.   $(gxarith_h) $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) $(gxmatrix_h) \
  1870.   $(gzstate_h)
  1871.  
  1872. psl2lib_=gximage4.$(OBJ) gximage5.$(OBJ)
  1873. psl2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psl2lib_) colimlib.dev psl2cs.dev
  1874.     $(SETMOD) psl2lib $(psl2lib_)
  1875.     $(ADDMOD) psl2lib -init gximage4 gximage5
  1876.     $(ADDMOD) psl2lib -include colimlib psl2cs
  1877.  
  1878. gximage4.$(OBJ): gximage4.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1879.  $(gsccolor_h) $(gspaint_h)\
  1880.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1881.  $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h) $(gximage_h) $(gxistate_h)\
  1882.  $(gxmatrix_h)\
  1883.  $(gzpath_h)
  1884.  
  1885. gximage5.$(OBJ): gximage5.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1886.  $(gsccolor_h) $(gspaint_h)\
  1887.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1888.  $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h) $(gximage_h) $(gxistate_h)\
  1889.  $(gxmatrix_h)\
  1890.  $(gzpath_h)
  1891.  
  1892. # ---------------- Display Postscript / Level 2 support ---------------- #
  1893.  
  1894. dps2lib_=gsdps1.$(OBJ)
  1895. dps2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(dps2lib_)
  1896.     $(SETMOD) dps2lib $(dps2lib_)
  1897.  
  1898. gsdps1.$(OBJ): gsdps1.c $(GXERR) $(math__h)\
  1899.  $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gspath2_h)\
  1900.  $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1901.  
  1902. # ---------------- CIE color ---------------- #
  1903.  
  1904. cielib_=gscie.$(OBJ) gxctable.$(OBJ)
  1905. cielib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cielib_)
  1906.     $(SETMOD) cielib $(cielib_)
  1907.  
  1908. gscie.$(OBJ): gscie.c $(GXERR) $(math__h) \
  1909.   $(gscie_h) $(gscolor2_h) $(gsmatrix_h) $(gsstruct_h) \
  1910.   $(gxarith_h) $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gzstate_h)
  1911.  
  1912. gxctable.$(OBJ): gxctable.c $(GX) \
  1913.   $(gxfixed_h) $(gxfrac_h) $(gxctable_h)
  1914.  
  1915. # ---------------- Separation colors ---------------- #
  1916.  
  1917. seprlib_=gscsepr.$(OBJ)
  1918. seprlib.dev: $(LIB_MAK) $(ECHOGS_XE) $(seprlib_)
  1919.     $(SETMOD) seprlib $(seprlib_)
  1920.  
  1921. gscsepr.$(OBJ): gscsepr.c $(GXERR)\
  1922.  $(gscsepr_h) $(gsmatrix_h) $(gsrefct_h)\
  1923.  $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) $(gzstate_h)
  1924.  
  1925. # ----------------------- Platform-specific modules ----------------------- #
  1926. # Platform-specific code doesn't really belong here: this is code that is
  1927. # shared among multiple platforms.
  1928.  
  1929. # Frame buffer implementations.
  1930.  
  1931. gp_nofb.$(OBJ): gp_nofb.c $(GX) \
  1932.   $(gp_h) $(gxdevice_h)
  1933.  
  1934. gp_dosfb.$(OBJ): gp_dosfb.c $(AK) $(malloc__h) $(memory__h)\
  1935.  $(gx_h) $(gp_h) $(gserrors_h) $(gxdevice_h)
  1936.  
  1937. # MS-DOS file system, also used by Desqview/X.
  1938. gp_dosfs.$(OBJ): gp_dosfs.c $(AK) $(dos__h) $(gp_h) $(gx_h)
  1939.  
  1940. # MS-DOS file enumeration, *not* used by Desqview/X.
  1941. gp_dosfe.$(OBJ): gp_dosfe.c $(AK) $(stdio__h) $(memory__h) $(string__h) \
  1942.   $(dos__h) $(gstypes_h) $(gsmemory_h) $(gsstruct_h) $(gp_h) $(gsutil_h)
  1943.  
  1944. # Other MS-DOS facilities.
  1945. gp_msdos.$(OBJ): gp_msdos.c $(AK) $(dos__h) $(stdio__h) $(string__h)\
  1946.  $(gsmemory_h) $(gstypes_h) $(gp_h)
  1947.  
  1948. # Unix(-like) file system, also used by Desqview/X.
  1949. gp_unifs.$(OBJ): gp_unifs.c $(AK) $(memory__h) $(string__h) $(gx_h) $(gp_h) \
  1950.   $(gsstruct_h) $(gsutil_h) $(stat__h) $(dirent__h)
  1951.  
  1952. # Unix(-like) file name syntax, *not* used by Desqview/X.
  1953. gp_unifn.$(OBJ): gp_unifn.c $(AK) $(gx_h) $(gp_h)
  1954.  
  1955. # Misc Libnix Amiga stuff
  1956. #modf.$(OBJ): modf.c
  1957. #frexp.$(OBJ): frexp.c
  1958. #ldexp.$(OBJ): ldexp.c
  1959.  
  1960. # ----------------------------- Main program ------------------------------ #
  1961.  
  1962. # Main program for library testing
  1963.  
  1964. gslib.$(OBJ): gslib.c $(AK) $(math__h) \
  1965.   $(gx_h) $(gp_h) $(gserrors_h) $(gsmatrix_h) $(gsstate_h) $(gscspace_h) \
  1966.   $(gscdefs_h) $(gscolor2_h) $(gscoord_h) $(gslib_h) $(gsparam_h) \
  1967.   $(gspaint_h) $(gspath_h) $(gsstruct_h) $(gsutil_h) \
  1968.   $(gxalloc_h) $(gxdevice_h)
  1969. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  1970. # This file is part of Aladdin Ghostscript.
  1971. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  1972. # or distributor accepts any responsibility for the consequences of using it,
  1973. # or for whether it serves any particular purpose or works at all, unless he
  1974. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  1975. # License (the "License") for full details.
  1976. # Every copy of Aladdin Ghostscript must include a copy of the License,
  1977. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  1978. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  1979. # under certain conditions described in the License.  Among other things, the
  1980. # License requires that the copyright notice and this notice be preserved on
  1981. # all copies.
  1982.  
  1983. # (Platform-independent) makefile for language interpreters.
  1984. # See the end of gs.mak for where this fits into the build process.
  1985.  
  1986. # Define the name of this makefile.
  1987. INT_MAK=int.mak
  1988.  
  1989. # ======================== Interpreter support ======================== #
  1990.  
  1991. # This is support code for all interpreters, not just PostScript and PDF.
  1992. # It knows about the PostScript data types, but isn't supposed to
  1993. # depend on anything outside itself.
  1994.  
  1995. errors_h=errors.h
  1996. idebug_h=idebug.h
  1997. idict_h=idict.h
  1998. igc_h=igc.h
  1999. igcstr_h=igcstr.h
  2000. iname_h=iname.h
  2001. inamedef_h=inamedef.h $(gconfigv_h) $(iname_h)
  2002. ipacked_h=ipacked.h
  2003. iref_h=iref.h
  2004. isave_h=isave.h
  2005. isstate_h=isstate.h
  2006. istruct_h=istruct.h $(gsstruct_h)
  2007. iutil_h=iutil.h
  2008. ivmspace_h=ivmspace.h $(gsgc_h)
  2009. opdef_h=opdef.h
  2010. # Nested include files
  2011. ghost_h=ghost.h $(gx_h) $(iref_h)
  2012. imemory_h=imemory.h $(gsalloc_h) $(ivmspace_h)
  2013. ialloc_h=ialloc.h $(imemory_h)
  2014. iastruct_h=iastruct.h $(gxobj_h) $(ialloc_h)
  2015. iastate_h=iastate.h $(gxalloc_h) $(ialloc_h) $(istruct_h)
  2016. store_h=store.h $(ialloc_h)
  2017.  
  2018. GH=$(AK) $(ghost_h)
  2019.  
  2020. isupport1_=ialloc.$(OBJ) igc.$(OBJ) igcref.$(OBJ) igcstr.$(OBJ)
  2021. isupport2_=ilocate.$(OBJ) iname.$(OBJ) isave.$(OBJ)
  2022. isupport_=$(isupport1_) $(isupport2_)
  2023. isupport.dev: $(INT_MAK) $(ECHOGS_XE) $(isupport_)
  2024.     $(SETMOD) isupport $(isupport1_)
  2025.     $(ADDMOD) isupport -obj $(isupport2_)
  2026.     $(ADDMOD) isupport -init igcref
  2027.  
  2028. ialloc.$(OBJ): ialloc.c $(AK) $(memory__h) $(gx_h)\
  2029.  $(errors_h) $(gsstruct_h) $(gxarith_h)\
  2030.  $(iastate_h) $(iref_h) $(ivmspace_h) $(store_h)
  2031.  
  2032. # igc.c, igcref.c, and igcstr.c should really be in the dpsand2 list,
  2033. # but since all the GC enumeration and relocation routines refer to them,
  2034. # it's too hard to separate them out from the Level 1 base.
  2035. igc.$(OBJ): igc.c $(GH) $(memory__h)\
  2036.   $(errors_h) $(gsexit_h) $(gsmdebug_h) $(gsstruct_h) $(gsutil_h) \
  2037.   $(iastate_h) $(idict_h) $(igc_h) $(igcstr_h) $(inamedef_h) \
  2038.   $(ipacked_h) $(isave_h) $(isstate_h) $(istruct_h) $(opdef_h)
  2039.  
  2040. igcref.$(OBJ): igcref.c $(GH) $(memory__h)\
  2041.  $(gsexit_h) $(gsstruct_h)\
  2042.  $(iastate_h) $(idebug_h) $(igc_h) $(iname_h) $(ipacked_h) $(store_h)
  2043.  
  2044. igcstr.$(OBJ): igcstr.c $(GH) $(memory__h)\
  2045.  $(gsmdebug_h) $(gsstruct_h) $(iastate_h) $(igcstr_h)
  2046.  
  2047. ilocate.$(OBJ): ilocate.c $(GH) $(memory__h)\
  2048.  $(errors_h) $(gsexit_h) $(gsstruct_h)\
  2049.  $(iastate_h) $(idict_h) $(igc_h) $(igcstr_h) $(iname_h)\
  2050.  $(ipacked_h) $(isstate_h) $(iutil_h) $(ivmspace_h)\
  2051.  $(store_h)
  2052.  
  2053. iname.$(OBJ): iname.c $(GH) $(memory__h) $(string__h) \
  2054.   $(gsstruct_h) $(errors_h) $(imemory_h) $(inamedef_h) $(isave_h) $(store_h)
  2055.  
  2056. isave.$(OBJ): isave.c $(GH) $(memory__h)\
  2057.  $(errors_h) $(gsexit_h) $(gsstruct_h) $(gsutil_h)\
  2058.  $(iastate_h) $(inamedef_h) $(isave_h) $(isstate_h) $(ivmspace_h)\
  2059.  $(ipacked_h) $(store_h)
  2060.  
  2061. ### Include files
  2062.  
  2063. idparam_h=idparam.h
  2064. ilevel_h=ilevel.h
  2065. iparam_h=iparam.h $(gsparam_h)
  2066. istack_h=istack.h
  2067. iutil2_h=iutil2.h
  2068. opcheck_h=opcheck.h
  2069. opextern_h=opextern.h
  2070. # Nested include files
  2071. dstack_h=dstack.h $(istack_h)
  2072. estack_h=estack.h $(istack_h)
  2073. ostack_h=ostack.h $(istack_h)
  2074. oper_h=oper.h $(iutil_h) $(opcheck_h) $(opdef_h) $(opextern_h) $(ostack_h)
  2075.  
  2076. idebug.$(OBJ): idebug.c $(GH) $(string__h)\
  2077.  $(ialloc_h) $(idebug_h) $(idict_h) $(iname_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  2078.  $(ostack_h) $(opdef_h) $(ipacked_h) $(store_h)
  2079.  
  2080. idict.$(OBJ): idict.c $(GH) $(string__h) $(errors_h)\
  2081.  $(ialloc_h) $(idebug_h) $(ivmspace_h) $(inamedef_h) $(ipacked_h)\
  2082.  $(isave_h) $(store_h) $(iutil_h) $(idict_h) $(dstack_h)
  2083.  
  2084. idparam.$(OBJ): idparam.c $(GH) $(memory__h) $(string__h) $(errors_h)\
  2085.  $(gsmatrix_h) $(gsuid_h)\
  2086.  $(idict_h) $(idparam_h) $(ilevel_h) $(imemory_h) $(iname_h) $(iutil_h)\
  2087.  $(oper_h) $(store_h)
  2088.  
  2089. iparam.$(OBJ): iparam.c $(GH) $(memory__h) $(string__h) $(errors_h)\
  2090.  $(ialloc_h) $(idict_h) $(iname_h) $(imemory_h) $(iparam_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  2091.  $(opcheck_h) $(store_h)
  2092.  
  2093. istack.$(OBJ): istack.c $(GH) $(memory__h) \
  2094.   $(errors_h) $(gsstruct_h) $(gsutil_h) \
  2095.   $(ialloc_h) $(istack_h) $(istruct_h) $(iutil_h) $(ivmspace_h) $(store_h)
  2096.  
  2097. iutil.$(OBJ): iutil.c $(GH) $(math__h) $(memory__h) $(string__h)\
  2098.  $(gsccode_h) $(gsmatrix_h) $(gsutil_h) $(gxfont_h)\
  2099.  $(errors_h) $(idict_h) $(imemory_h) $(iutil_h) $(ivmspace_h)\
  2100.  $(iname_h) $(ipacked_h) $(oper_h) $(store_h)
  2101.  
  2102. # ======================== PostScript Level 1 ======================== #
  2103.  
  2104. ###### Include files
  2105.  
  2106. files_h=files.h
  2107. fname_h=fname.h
  2108. ichar_h=ichar.h
  2109. icharout_h=icharout.h
  2110. icolor_h=icolor.h
  2111. icsmap_h=icsmap.h
  2112. ifont_h=ifont.h $(gsccode_h) $(gsstruct_h)
  2113. iimage_h=iimage.h
  2114. imain_h=imain.h $(gsexit_h)
  2115. imainarg_h=imainarg.h
  2116. iminst_h=iminst.h $(imain_h)
  2117. interp_h=interp.h
  2118. iparray_h=iparray.h
  2119. iscannum_h=iscannum.h
  2120. istream_h=istream.h
  2121. main_h=main.h $(iminst_h)
  2122. overlay_h=overlay.h
  2123. sbwbs_h=sbwbs.h
  2124. sfilter_h=sfilter.h $(gstypes_h)
  2125. shcgen_h=shcgen.h
  2126. smtf_h=smtf.h
  2127. # Nested include files
  2128. bfont_h=bfont.h $(ifont_h)
  2129. ifilter_h=ifilter.h $(istream_h) $(ivmspace_h)
  2130. igstate_h=igstate.h $(gsstate_h) $(gxstate_h) $(istruct_h)
  2131. iscan_h=iscan.h $(sa85x_h) $(sstring_h)
  2132. sbhc_h=sbhc.h $(shc_h)
  2133. # Include files for optional features
  2134. ibnum_h=ibnum.h
  2135.  
  2136. ### Initialization and scanning
  2137.  
  2138. iconfig=iconfig$(CONFIG)
  2139. $(iconfig).$(OBJ): iconf.c $(stdio__h) \
  2140.   $(gconfig_h) $(gscdefs_h) $(gsmemory_h) \
  2141.   $(files_h) $(iminst_h) $(iref_h) $(ivmspace_h) $(opdef_h) $(stream_h)
  2142.     $(RM_) gconfig.h
  2143.     $(RM_) $(iconfig).c
  2144.     $(CP_) $(gconfig_h) gconfig.h
  2145.     $(CP_) $(srcdir)/iconf.c $(iconfig).c
  2146.     $(CCC) -I. -I$(srcdir) $(iconfig).c
  2147.     $(RM_) gconfig.h
  2148.     $(RM_) $(iconfig).c
  2149.  
  2150. iinit.$(OBJ): iinit.c $(GH) $(string__h)\
  2151.  $(gscdefs_h) $(gsexit_h) $(gsstruct_h)\
  2152.  $(ialloc_h) $(idict_h) $(dstack_h) $(errors_h)\
  2153.  $(ilevel_h) $(iname_h) $(interp_h) $(opdef_h)\
  2154.  $(ipacked_h) $(iparray_h) $(iutil_h) $(ivmspace_h) $(store_h)
  2155.  
  2156. iscan.$(OBJ): iscan.c $(GH) $(memory__h)\
  2157.  $(ialloc_h) $(idict_h) $(dstack_h) $(errors_h) $(files_h)\
  2158.  $(ilevel_h) $(iutil_h) $(iscan_h) $(iscannum_h) $(istruct_h) $(ivmspace_h)\
  2159.  $(iname_h) $(ipacked_h) $(iparray_h) $(istream_h) $(ostack_h) $(store_h)\
  2160.  $(stream_h) $(strimpl_h) $(sfilter_h) $(scanchar_h)
  2161.  
  2162. iscannum.$(OBJ): iscannum.c $(GH) $(math__h)\
  2163.   $(errors_h) $(iscannum_h) $(scanchar_h) $(scommon_h) $(store_h)
  2164.  
  2165. ### Streams
  2166.  
  2167. sfilter1.$(OBJ): sfilter1.c $(AK) $(stdio__h) $(memory__h) \
  2168.   $(sfilter_h) $(strimpl_h)
  2169.  
  2170. ###### Operators
  2171.  
  2172. OP=$(GH) $(errors_h) $(oper_h)
  2173.  
  2174. ### Non-graphics operators
  2175.  
  2176. zarith.$(OBJ): zarith.c $(OP) $(math__h) $(store_h)
  2177.  
  2178. zarray.$(OBJ): zarray.c $(OP) $(memory__h) $(ialloc_h) $(ipacked_h) $(store_h)
  2179.  
  2180. zcontrol.$(OBJ): zcontrol.c $(OP) $(string__h)\
  2181.  $(estack_h) $(files_h) $(ipacked_h) $(iutil_h) $(store_h) $(stream_h)
  2182.  
  2183. zdict.$(OBJ): zdict.c $(OP) \
  2184.   $(dstack_h) $(idict_h) $(ilevel_h) $(iname_h) $(ipacked_h) $(ivmspace_h) \
  2185.   $(store_h)
  2186.  
  2187. zfile.$(OBJ): zfile.c $(OP) $(memory__h) $(string__h) $(gp_h)\
  2188.  $(gsstruct_h) $(gxiodev_h) \
  2189.  $(ialloc_h) $(estack_h) $(files_h) $(fname_h) $(ilevel_h) $(interp_h) $(iutil_h)\
  2190.  $(isave_h) $(main_h) $(sfilter_h) $(stream_h) $(strimpl_h) $(store_h)
  2191.  
  2192. zfileio.$(OBJ): zfileio.c $(OP) $(gp_h) \
  2193.   $(files_h) $(ifilter_h) $(store_h) $(stream_h) $(strimpl_h) \
  2194.   $(gsmatrix_h) $(gxdevice_h) $(gxdevmem_h)
  2195.  
  2196. zfilter.$(OBJ): zfilter.c $(OP) $(memory__h)\
  2197.  $(gsstruct_h) $(files_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) \
  2198.  $(sfilter_h) $(srlx_h) $(sstring_h) $(store_h) $(stream_h) $(strimpl_h)
  2199.  
  2200. zfname.$(OBJ): zfname.c $(OP) $(memory__h)\
  2201.  $(fname_h) $(gxiodev_h) $(ialloc_h) $(stream_h)
  2202.  
  2203. zfproc.$(OBJ): zfproc.c $(GH) $(memory__h)\
  2204.  $(errors_h) $(oper_h)\
  2205.  $(estack_h) $(files_h) $(gsstruct_h) $(ialloc_h) $(ifilter_h) $(istruct_h)\
  2206.  $(store_h) $(stream_h) $(strimpl_h)
  2207.  
  2208. zgeneric.$(OBJ): zgeneric.c $(OP) $(memory__h)\
  2209.  $(idict_h) $(estack_h) $(ivmspace_h) $(iname_h) $(ipacked_h) $(store_h)
  2210.  
  2211. ziodev.$(OBJ): ziodev.c $(OP) $(memory__h) $(stdio__h) $(string__h)\
  2212.  $(gp_h) $(gpcheck_h)\
  2213.  $(gsstruct_h) $(gxiodev_h)\
  2214.  $(files_h) $(ialloc_h) $(ivmspace_h) $(store_h) $(stream_h)
  2215.  
  2216. zmath.$(OBJ): zmath.c $(OP) $(math__h) $(gxfarith_h) $(store_h)
  2217.  
  2218. zmisc.$(OBJ): zmisc.c $(OP) $(gscdefs_h) $(gp_h) \
  2219.   $(errno__h) $(memory__h) $(string__h) \
  2220.   $(ialloc_h) $(idict_h) $(dstack_h) $(iname_h) $(ivmspace_h) $(ipacked_h) $(store_h)
  2221.  
  2222. zpacked.$(OBJ): zpacked.c $(OP) \
  2223.   $(ialloc_h) $(idict_h) $(ivmspace_h) $(iname_h) $(ipacked_h) $(iparray_h) \
  2224.   $(istack_h) $(store_h)
  2225.  
  2226. zrelbit.$(OBJ): zrelbit.c $(OP) $(gsutil_h) $(store_h) $(idict_h)
  2227.  
  2228. zstack.$(OBJ): zstack.c $(OP) $(memory__h)\
  2229.  $(ialloc_h) $(istack_h) $(store_h)
  2230.  
  2231. zstring.$(OBJ): zstring.c $(OP) $(memory__h)\
  2232.  $(gsutil_h)\
  2233.  $(ialloc_h) $(iname_h) $(ivmspace_h) $(store_h)
  2234.  
  2235. zsysvm.$(OBJ): zsysvm.c $(GH)\
  2236.  $(ialloc_h) $(ivmspace_h) $(oper_h) $(store_h)
  2237.  
  2238. ztoken.$(OBJ): ztoken.c $(OP) \
  2239.   $(estack_h) $(files_h) $(gsstruct_h) $(iscan_h) \
  2240.   $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2241.  
  2242. ztype.$(OBJ): ztype.c $(OP) $(math__h) $(memory__h) $(string__h)\
  2243.  $(dstack_h) $(idict_h) $(imemory_h) $(iname_h)\
  2244.  $(iscan_h) $(iutil_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2245.  
  2246. zvmem.$(OBJ): zvmem.c $(OP) \
  2247.   $(ialloc_h) $(idict_h) $(dstack_h) $(estack_h) $(isave_h) $(igstate_h) $(store_h) \
  2248.   $(gsmatrix_h) $(gsstate_h) $(gsstruct_h)
  2249.  
  2250. ### Graphics operators
  2251.  
  2252. zchar.$(OBJ): zchar.c $(OP)\
  2253.  $(gsstruct_h) $(gxarith_h) $(gxfixed_h) $(gxmatrix_h)\
  2254.  $(gxchar_h) $(gxdevice_h) $(gxfont_h) $(gzpath_h) $(gzstate_h)\
  2255.  $(dstack_h) $(estack_h) $(ialloc_h) $(ichar_h) $(idict_h) $(ifont_h)\
  2256.  $(ilevel_h) $(iname_h) $(igstate_h) $(ipacked_h) $(store_h)
  2257.  
  2258. # zcharout is used for Type 1 and Type 42 fonts only.
  2259. zcharout.$(OBJ): zcharout.c $(OP)\
  2260.  $(gschar_h) $(gxdevice_h) $(gxfont_h)\
  2261.  $(dstack_h) $(estack_h) $(ichar_h) $(icharout_h)\
  2262.  $(idict_h) $(ifont_h) $(igstate_h) $(store_h)
  2263.  
  2264. zcolor.$(OBJ): zcolor.c $(OP) \
  2265.   $(gxfixed_h) $(gxmatrix_h) $(gzstate_h) $(gxdevice_h) $(gxcmap_h) \
  2266.   $(ialloc_h) $(icolor_h) $(estack_h) $(iutil_h) $(igstate_h) $(store_h)
  2267.  
  2268. zdevice.$(OBJ): zdevice.c $(OP) $(string__h)\
  2269.  $(ialloc_h) $(idict_h) $(igstate_h) $(iname_h) $(interp_h) $(iparam_h) $(ivmspace_h)\
  2270.  $(gsmatrix_h) $(gsstate_h) $(gxdevice_h) $(store_h)
  2271.  
  2272. zfont.$(OBJ): zfont.c $(OP)\
  2273.  $(gschar_h) $(gsstruct_h) $(gxdevice_h) $(gxfont_h) $(gxfcache_h)\
  2274.  $(gzstate_h)\
  2275.  $(ialloc_h) $(idict_h) $(igstate_h) $(iname_h) $(isave_h) $(ivmspace_h)\
  2276.  $(bfont_h) $(store_h)
  2277.  
  2278. zfont2.$(OBJ): zfont2.c $(OP) $(memory__h) $(string__h)\
  2279.  $(gsmatrix_h) $(gxdevice_h) $(gschar_h) $(gxfixed_h) $(gxfont_h)\
  2280.  $(ialloc_h) $(bfont_h) $(idict_h) $(idparam_h) $(ilevel_h) $(iname_h) $(istruct_h)\
  2281.  $(ipacked_h) $(store_h)
  2282.  
  2283. zgstate.$(OBJ): zgstate.c $(OP) $(math__h)\
  2284.  $(gsmatrix_h) $(ialloc_h) $(idict_h) $(igstate_h) $(istruct_h) $(store_h)
  2285.  
  2286. zht.$(OBJ): zht.c $(OP) $(memory__h)\
  2287.  $(gsmatrix_h) $(gsstate_h) $(gsstruct_h) $(gxdevice_h) $(gzht_h) \
  2288.  $(ialloc_h) $(estack_h) $(igstate_h) $(store_h)
  2289.  
  2290. zimage.$(OBJ): zimage.c $(OP) \
  2291.   $(estack_h) $(ialloc_h) $(ifilter_h) $(igstate_h) $(iimage_h) $(ilevel_h) \
  2292.   $(gscspace_h) $(gsimage_h) $(gsmatrix_h) $(gsstruct_h) \
  2293.   $(store_h) $(stream_h)
  2294.  
  2295. zmatrix.$(OBJ): zmatrix.c $(OP)\
  2296.  $(gsmatrix_h) $(igstate_h) $(gscoord_h) $(store_h)
  2297.  
  2298. zpaint.$(OBJ): zpaint.c $(OP)\
  2299.  $(gspaint_h) $(igstate_h)
  2300.  
  2301. zpath.$(OBJ): zpath.c $(OP) $(math__h) \
  2302.   $(gsmatrix_h) $(gspath_h) $(igstate_h) $(store_h)
  2303.  
  2304. # Define the base PostScript language interpreter.
  2305. # This is the subset of PostScript Level 1 required by our PDF reader.
  2306.  
  2307. INT1=idebug.$(OBJ) idict.$(OBJ) idparam.$(OBJ) iinit.$(OBJ)
  2308. INT2=interp.$(OBJ) iparam.$(OBJ) ireclaim.$(OBJ)
  2309. INT3=iscan.$(OBJ) iscannum.$(OBJ) istack.$(OBJ) iutil.$(OBJ)
  2310. INT4=scantab.$(OBJ) sfilter1.$(OBJ) sstring.$(OBJ) stream.$(OBJ)
  2311. Z1=zarith.$(OBJ) zarray.$(OBJ) zcontrol.$(OBJ) zdict.$(OBJ)
  2312. Z1OPS=zarith zarray zcontrol zdict
  2313. Z2=zfile.$(OBJ) zfileio.$(OBJ) zfilter.$(OBJ) zfname.$(OBJ) zfproc.$(OBJ)
  2314. Z2OPS=zfile zfileio zfilter zfproc
  2315. Z3=zgeneric.$(OBJ) ziodev.$(OBJ) zmath.$(OBJ) zmisc.$(OBJ) zpacked.$(OBJ)
  2316. Z3OPS=zgeneric ziodev zmath zmisc zpacked
  2317. Z4=zrelbit.$(OBJ) zstack.$(OBJ) zstring.$(OBJ) zsysvm.$(OBJ)
  2318. Z4OPS=zrelbit zstack zstring zsysvm
  2319. Z5=ztoken.$(OBJ) ztype.$(OBJ) zvmem.$(OBJ)
  2320. Z5OPS=ztoken ztype zvmem
  2321. Z6=zchar.$(OBJ) zcolor.$(OBJ) zdevice.$(OBJ) zfont.$(OBJ) zfont2.$(OBJ)
  2322. Z6OPS=zchar zcolor zdevice zfont zfont2
  2323. Z7=zgstate.$(OBJ) zht.$(OBJ) zimage.$(OBJ) zmatrix.$(OBJ) zpaint.$(OBJ) zpath.$(OBJ)
  2324. Z7OPS=zgstate zht zimage zmatrix zpaint zpath
  2325. # We have to be a little underhanded with *config.$(OBJ) so as to avoid
  2326. # circular definitions.
  2327. INT_OBJS=imainarg.$(OBJ) gsargs.$(OBJ) imain.$(OBJ) \
  2328.   $(INT1) $(INT2) $(INT3) $(INT4) \
  2329.   $(Z1) $(Z2) $(Z3) $(Z4) $(Z5) $(Z6) $(Z7)
  2330. INT_CONFIG=$(gconfig).$(OBJ) $(gscdefs).$(OBJ) $(iconfig).$(OBJ) \
  2331.   iccinit$(COMPILE_INITS).$(OBJ)
  2332. INT_ALL=$(INT_OBJS) $(INT_CONFIG)
  2333. # We omit libcore.dev, which should be included here, because problems
  2334. # with the Unix linker require libcore to appear last in the link list
  2335. # when libcore is really a library.
  2336. # We omit $(INT_CONFIG) from the dependency list because they have special
  2337. # dependency requirements and are added to the link list at the very end.
  2338. # zfilter.c shouldn't include the RLE and RLD filters, but we don't want to
  2339. # change this now.
  2340. psbase.dev: $(INT_MAK) $(ECHOGS_XE) $(INT_OBJS)\
  2341.  isupport.dev rld.dev rle.dev sfile.dev
  2342.     $(SETMOD) psbase imainarg.$(OBJ) gsargs.$(OBJ) imain.$(OBJ)
  2343.     $(ADDMOD) psbase -obj $(INT_CONFIG)
  2344.     $(ADDMOD) psbase -obj $(INT1)
  2345.     $(ADDMOD) psbase -obj $(INT2)
  2346.     $(ADDMOD) psbase -obj $(INT3)
  2347.     $(ADDMOD) psbase -obj $(INT4)
  2348.     $(ADDMOD) psbase -obj $(Z1)
  2349.     $(ADDMOD) psbase -oper $(Z1OPS)
  2350.     $(ADDMOD) psbase -obj $(Z2)
  2351.     $(ADDMOD) psbase -oper $(Z2OPS)
  2352.     $(ADDMOD) psbase -obj $(Z3)
  2353.     $(ADDMOD) psbase -oper $(Z3OPS)
  2354.     $(ADDMOD) psbase -obj $(Z4)
  2355.     $(ADDMOD) psbase -oper $(Z4OPS)
  2356.     $(ADDMOD) psbase -obj $(Z5)
  2357.     $(ADDMOD) psbase -oper $(Z5OPS)
  2358.     $(ADDMOD) psbase -obj $(Z6)
  2359.     $(ADDMOD) psbase -oper $(Z6OPS)
  2360.     $(ADDMOD) psbase -obj $(Z7)
  2361.     $(ADDMOD) psbase -oper $(Z7OPS)
  2362.     $(ADDMOD) psbase -iodev stdin stdout stderr lineedit statementedit
  2363.     $(ADDMOD) psbase -include isupport rld rle sfile
  2364.  
  2365. # -------------------------- Feature definitions -------------------------- #
  2366.  
  2367. # ---------------- Full Level 1 interpreter ---------------- #
  2368.  
  2369. level1.dev: $(INT_MAK) $(ECHOGS_XE) psbase.dev bcp.dev hsb.dev path1.dev type1.dev
  2370.     $(SETMOD) level1 -include psbase bcp hsb path1 type1
  2371.     $(ADDMOD) level1 -emulator PostScript PostScriptLevel1
  2372.  
  2373. # -------- Level 1 color extensions (CMYK color and colorimage) -------- #
  2374.  
  2375. color.dev: $(INT_MAK) $(ECHOGS_XE) cmyklib.dev colimlib.dev cmykread.dev
  2376.     $(SETMOD) color -include cmyklib colimlib cmykread
  2377.  
  2378. cmykread_=zcolor1.$(OBJ) zht1.$(OBJ)
  2379. cmykread.dev: $(INT_MAK) $(ECHOGS_XE) $(cmykread_)
  2380.     $(SETMOD) cmykread $(cmykread_)
  2381.     $(ADDMOD) cmykread -oper zcolor1 zht1
  2382.  
  2383. zcolor1.$(OBJ): zcolor1.c $(OP) \
  2384.   $(gscolor1_h) \
  2385.   $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  2386.   $(gzstate_h) \
  2387.   $(ialloc_h) $(icolor_h) $(iimage_h) $(estack_h) $(iutil_h) $(igstate_h) $(store_h)
  2388.  
  2389. zht1.$(OBJ): zht1.c $(OP) $(memory__h)\
  2390.  $(gsmatrix_h) $(gsstate_h) $(gsstruct_h) $(gxdevice_h) $(gzht_h)\
  2391.  $(ialloc_h) $(estack_h) $(igstate_h) $(store_h)
  2392.  
  2393. # ---------------- HSB color ---------------- #
  2394.  
  2395. hsb_=zhsb.$(OBJ)
  2396. hsb.dev: $(INT_MAK) $(ECHOGS_XE) $(hsb_) hsblib.dev
  2397.     $(SETMOD) hsb $(hsb_)
  2398.     $(ADDMOD) hsb -include hsblib
  2399.     $(ADDMOD) hsb -oper zhsb
  2400.  
  2401. zhsb.$(OBJ): zhsb.c $(OP) \
  2402.   $(gshsb_h) $(igstate_h) $(store_h)
  2403.  
  2404. # ---- Level 1 path miscellany (arcs, pathbbox, path enumeration) ---- #
  2405.  
  2406. path1_=zpath1.$(OBJ)
  2407. path1.dev: $(INT_MAK) $(ECHOGS_XE) $(path1_) path1lib.dev
  2408.     $(SETMOD) path1 $(path1_)
  2409.     $(ADDMOD) path1 -include path1lib
  2410.     $(ADDMOD) path1 -oper zpath1
  2411.  
  2412. zpath1.$(OBJ): zpath1.c $(OP) $(memory__h)\
  2413.  $(ialloc_h) $(estack_h) $(gspath_h) $(gsstruct_h) $(igstate_h) $(store_h)
  2414.  
  2415. # ================ Level-independent PostScript options ================ #
  2416.  
  2417. # ---------------- BCP filters ---------------- #
  2418.  
  2419. bcp_=sbcp.$(OBJ) zfbcp.$(OBJ)
  2420. bcp.dev: $(INT_MAK) $(ECHOGS_XE) $(bcp_)
  2421.     $(SETMOD) bcp $(bcp_)
  2422.     $(ADDMOD) bcp -oper zfbcp
  2423.  
  2424. sbcp.$(OBJ): sbcp.c $(AK) $(stdio__h) \
  2425.   $(sfilter_h) $(strimpl_h)
  2426.  
  2427. zfbcp.$(OBJ): zfbcp.c $(OP) $(memory__h)\
  2428.  $(gsstruct_h) $(ialloc_h) $(ifilter_h)\
  2429.  $(sfilter_h) $(stream_h) $(strimpl_h)
  2430.  
  2431. # ---------------- Incremental font loading ---------------- #
  2432. # (This only works for Type 1 fonts without eexec encryption.)
  2433.  
  2434. diskfont.dev: $(INT_MAK) $(ECHOGS_XE)
  2435.     $(SETMOD) diskfont -ps gs_diskf
  2436.  
  2437. # ---------------- Double-precision floats ---------------- #
  2438.  
  2439. double_=zdouble.$(OBJ)
  2440. double.dev: $(INT_MAK) $(ECHOGS_XE) $(double_)
  2441.     $(SETMOD) double $(double_)
  2442.     $(ADDMOD) double -oper zdouble
  2443.  
  2444. zdouble.$(OBJ): zdouble.c $(OP) $(ctype__h) $(math__h) $(memory__h) $(string__h) \
  2445.   $(gxfarith_h) $(store_h)
  2446.  
  2447. # ---------------- EPSF files with binary headers ---------------- #
  2448.  
  2449. epsf.dev: $(INT_MAK) $(ECHOGS_XE)
  2450.     $(SETMOD) epsf -ps gs_epsf
  2451.  
  2452. # ---------------- RasterOp ---------------- #
  2453. # This should be a separable feature in the core also....
  2454.  
  2455. rasterop.dev: $(INT_MAK) $(ECHOGS_XE) roplib.dev ropread.dev
  2456.     $(SETMOD) rasterop -include roplib ropread
  2457.  
  2458. ropread_=zrop.$(OBJ)
  2459. ropread.dev: $(INT_MAK) $(ECHOGS_XE) $(ropread_)
  2460.     $(SETMOD) ropread $(ropread_)
  2461.     $(ADDMOD) ropread -oper zrop
  2462.  
  2463. zrop.$(OBJ): zrop.c $(OP) $(memory__h)\
  2464.  $(gsrop_h) $(gsutil_h) $(gxdevice_h)\
  2465.  $(idict_h) $(idparam_h) $(igstate_h) $(store_h)
  2466.  
  2467. # ---------------- PostScript Type 1 (and Type 4) fonts ---------------- #
  2468.  
  2469. type1.dev: $(INT_MAK) $(ECHOGS_XE) psf1lib.dev psf1read.dev
  2470.     $(SETMOD) type1 -include psf1lib psf1read
  2471.  
  2472. psf1read_=seexec.$(OBJ) zchar1.$(OBJ) zcharout.$(OBJ) zfont1.$(OBJ) zmisc1.$(OBJ)
  2473. psf1read.dev: $(INT_MAK) $(ECHOGS_XE) $(psf1read_)
  2474.     $(SETMOD) psf1read $(psf1read_)
  2475.     $(ADDMOD) psf1read -oper zchar1 zfont1 zmisc1
  2476.     $(ADDMOD) psf1read -ps gs_type1
  2477.  
  2478. seexec.$(OBJ): seexec.c $(AK) $(stdio__h) \
  2479.   $(gscrypt1_h) $(scanchar_h) $(sfilter_h) $(strimpl_h)
  2480.  
  2481. zchar1.$(OBJ): zchar1.c $(OP) \
  2482.   $(gspaint_h) $(gspath_h) $(gsstruct_h) \
  2483.   $(gxchar_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  2484.   $(gxfont_h) $(gxfont1_h) $(gxtype1_h) $(gzstate_h) \
  2485.   $(estack_h) $(ialloc_h) $(ichar_h) $(icharout_h) \
  2486.   $(idict_h) $(ifont_h) $(igstate_h) $(store_h)
  2487.  
  2488. zfont1.$(OBJ): zfont1.c $(OP) \
  2489.   $(gsmatrix_h) $(gxdevice_h) $(gschar_h) \
  2490.   $(gxfixed_h) $(gxfont_h) $(gxfont1_h) \
  2491.   $(bfont_h) $(ialloc_h) $(idict_h) $(idparam_h) $(store_h)
  2492.  
  2493. zmisc1.$(OBJ): zmisc1.c $(OP) $(memory__h)\
  2494.  $(gscrypt1_h)\
  2495.  $(idict_h) $(idparam_h) $(ifilter_h)\
  2496.  $(sfilter_h) $(stream_h) $(strimpl_h)
  2497.  
  2498. # -------------- Compact Font Format and Type 2 charstrings ------------- #
  2499.  
  2500. cff.dev: $(INT_MAK) $(ECHOGS_XE) gs_cff.ps psl2int.dev
  2501.     $(SETMOD) cff -ps gs_cff
  2502.  
  2503. type2.dev: $(INT_MAK) $(ECHOGS_XE) type1.dev psf2lib.dev
  2504.     $(SETMOD) type2 -include psf2lib
  2505.  
  2506. # ---------------- TrueType and PostScript Type 42 fonts ---------------- #
  2507.  
  2508. # Native TrueType support
  2509. ttfont.dev: $(INT_MAK) $(ECHOGS_XE) type42.dev
  2510.     $(SETMOD) ttfont -include type42
  2511.     $(ADDMOD) ttfont -ps gs_mro_e gs_wan_e gs_ttf
  2512.  
  2513. # Type 42 (embedded TrueType) support
  2514. type42read_=zchar42.$(OBJ) zcharout.$(OBJ) zfont42.$(OBJ)
  2515. type42.dev: $(INT_MAK) $(ECHOGS_XE) $(type42read_) ttflib.dev
  2516.     $(SETMOD) type42 $(type42read_)
  2517.     $(ADDMOD) type42 -include ttflib    
  2518.     $(ADDMOD) type42 -oper zchar42 zfont42
  2519.     $(ADDMOD) type42 -ps gs_typ42
  2520.  
  2521. zchar42.$(OBJ): zchar42.c $(OP) \
  2522.   $(gsmatrix_h) $(gspaint_h) $(gspath_h) \
  2523.   $(gxfixed_h) $(gxchar_h) $(gxfont_h) $(gxfont42_h) \
  2524.   $(gxistate_h) $(gxpath_h) $(gzstate_h) \
  2525.   $(dstack_h) $(estack_h) $(ichar_h) $(icharout_h) \
  2526.   $(ifont_h) $(igstate_h) $(store_h)
  2527.  
  2528. zfont42.$(OBJ): zfont42.c $(OP) \
  2529.   $(gsccode_h) $(gsmatrix_h) $(gxfont_h) $(gxfont42_h) \
  2530.   $(bfont_h) $(idict_h) $(idparam_h) $(store_h)
  2531.  
  2532. # ---------------- Obsolete PPM writing facility ---------------- #
  2533.  
  2534. writeppm_=zwppm.$(OBJ)
  2535. writeppm.dev: $(INT_MAK) $(ECHOGS_XE) $(writeppm_)
  2536.     $(SETMOD) writeppm $(writeppm_)
  2537.     $(ADDMOD) writeppm -oper zwppm
  2538.  
  2539. zwppm.$(OBJ): zwppm.c $(OP) $(memory__h) \
  2540.   $(files_h) $(gscdefs_h) $(gsmatrix_h) $(gxdevice_h) $(gxdevmem_h) \
  2541.   $(stream_h)
  2542.  
  2543. # ======================== Precompilation options ======================== #
  2544.  
  2545. # ---------------- Precompiled fonts ---------------- #
  2546. # See fonts.txt for more information.
  2547.  
  2548. ccfont_h=ccfont.h $(std_h) $(gsmemory_h) $(iref_h) $(ivmspace_h) $(store_h)
  2549.  
  2550. CCFONT=$(OP) $(ccfont_h)
  2551.  
  2552. # List the fonts we are going to compile.
  2553. # Because of intrinsic limitations in `make', we have to list
  2554. # the object file names and the font names separately.
  2555. # Because of limitations in the DOS shell, we have to break the fonts up
  2556. # into lists that will fit on a single line (120 characters).
  2557. # The rules for constructing the .c files from the fonts themselves,
  2558. # and for compiling the .c files, are in cfonts.mak, not here.
  2559. # For example, to compile the Courier fonts, you should invoke
  2560. #    make -f cfonts.mak Courier_o
  2561. # By convention, the names of the 35 standard compiled fonts use '0' for
  2562. # the foundry name.  This allows users to substitute different foundries
  2563. # without having to change this makefile.
  2564. ccfonts_ps=gs_ccfnt
  2565. ccfonts1_=0agk.$(OBJ) 0agko.$(OBJ) 0agd.$(OBJ) 0agdo.$(OBJ)
  2566. ccfonts1=agk agko agd agdo
  2567. ccfonts2_=0bkl.$(OBJ) 0bkli.$(OBJ) 0bkd.$(OBJ) 0bkdi.$(OBJ)
  2568. ccfonts2=bkl bkli bkd bkdi
  2569. ccfonts3_=0crr.$(OBJ) 0cri.$(OBJ) 0crb.$(OBJ) 0crbi.$(OBJ)
  2570. ccfonts3=crr cri crb crbi
  2571. ccfonts4_=0hvr.$(OBJ) 0hvro.$(OBJ) 0hvb.$(OBJ) 0hvbo.$(OBJ)
  2572. ccfonts4=hvr hvro hvb hvbo
  2573. ccfonts5_=0hvrrn.$(OBJ) 0hvrorn.$(OBJ) 0hvbrn.$(OBJ) 0hvborn.$(OBJ)
  2574. ccfonts5=hvrrn hvrorn hvbrn hvborn
  2575. ccfonts6_=0ncr.$(OBJ) 0ncri.$(OBJ) 0ncb.$(OBJ) 0ncbi.$(OBJ)
  2576. ccfonts6=ncr ncri ncb ncbi
  2577. ccfonts7_=0plr.$(OBJ) 0plri.$(OBJ) 0plb.$(OBJ) 0plbi.$(OBJ)
  2578. ccfonts7=plr plri plb plbi
  2579. ccfonts8_=0tmr.$(OBJ) 0tmri.$(OBJ) 0tmb.$(OBJ) 0tmbi.$(OBJ)
  2580. ccfonts8=tmr tmri tmb tmbi
  2581. ccfonts9_=0syr.$(OBJ) 0zcmi.$(OBJ) 0zdr.$(OBJ)
  2582. ccfonts9=syr zcmi zdr
  2583. # The free distribution includes Bitstream Charter, Utopia, and
  2584. # freeware Cyrillic and Kana fonts.  We only provide for compiling
  2585. # Charter and Utopia.
  2586. ccfonts10free_=bchr.$(OBJ) bchri.$(OBJ) bchb.$(OBJ) bchbi.$(OBJ)
  2587. ccfonts10free=chr chri chb chbi
  2588. ccfonts11free_=putr.$(OBJ) putri.$(OBJ) putb.$(OBJ) putbi.$(OBJ)
  2589. ccfonts11free=utr utri utb utbi
  2590. # Uncomment the alternatives in the next 4 lines if you want
  2591. # Charter and Utopia compiled in.
  2592. #ccfonts10_=$(ccfonts10free_)
  2593. ccfonts10_=
  2594. #ccfonts10=$(ccfonts10free)
  2595. ccfonts10=
  2596. #ccfonts11_=$(ccfonts11free_)
  2597. ccfonts11_=
  2598. #ccfonts11=$(ccfonts11free)
  2599. ccfonts11=
  2600. # Add your own fonts here if desired.
  2601. ccfonts12_=
  2602. ccfonts12=
  2603. ccfonts13_=
  2604. ccfonts13=
  2605. ccfonts14_=
  2606. ccfonts14=
  2607. ccfonts15_=
  2608. ccfonts15=
  2609.  
  2610. # It's OK for ccfonts_.dev not to be CONFIG-dependent, because it only
  2611. # exists during the execution of the following rule.
  2612. # font2c has the prefix "gs" built into it, so we need to instruct
  2613. # genconf to use the same one.
  2614. $(gconfigf_h): $(MAKEFILE) $(INT_MAK) $(GENCONF_XE)
  2615.     $(SETMOD) ccfonts_ -font $(ccfonts1)
  2616.     $(ADDMOD) ccfonts_ -font $(ccfonts2)
  2617.     $(ADDMOD) ccfonts_ -font $(ccfonts3)
  2618.     $(ADDMOD) ccfonts_ -font $(ccfonts4)
  2619.     $(ADDMOD) ccfonts_ -font $(ccfonts5)
  2620.     $(ADDMOD) ccfonts_ -font $(ccfonts6)
  2621.     $(ADDMOD) ccfonts_ -font $(ccfonts7)
  2622.     $(ADDMOD) ccfonts_ -font $(ccfonts8)
  2623.     $(ADDMOD) ccfonts_ -font $(ccfonts9)
  2624.     $(ADDMOD) ccfonts_ -font $(ccfonts10)
  2625.     $(ADDMOD) ccfonts_ -font $(ccfonts11)
  2626.     $(ADDMOD) ccfonts_ -font $(ccfonts12)
  2627.     $(ADDMOD) ccfonts_ -font $(ccfonts13)
  2628.     $(ADDMOD) ccfonts_ -font $(ccfonts14)
  2629.     $(ADDMOD) ccfonts_ -font $(ccfonts15)
  2630.     $(EXP)genconf ccfonts_.dev -n gs -f $(gconfigf_h)
  2631.  
  2632. # We separate icfontab.dev from ccfonts.dev so that a customer can put
  2633. # compiled fonts into a separate shared library.
  2634.  
  2635. icfontab=icfontab$(CONFIG)
  2636.  
  2637. # Define ccfont_table separately, so it can be set from the command line
  2638. # to select an alternate compiled font table.
  2639. ccfont_table=$(icfontab)
  2640.  
  2641. $(icfontab).dev: $(MAKEFILE) $(INT_MAK) $(ECHOGS_XE) $(icfontab).$(OBJ) \
  2642.   $(ccfonts1_) $(ccfonts2_) $(ccfonts3_) $(ccfonts4_) $(ccfonts5_) \
  2643.   $(ccfonts6_) $(ccfonts7_) $(ccfonts8_) $(ccfonts9_) $(ccfonts10_) \
  2644.   $(ccfonts11_) $(ccfonts12_) $(ccfonts13_) $(ccfonts14_) $(ccfonts15_)
  2645.     $(SETMOD) $(icfontab) -obj $(icfontab).$(OBJ)
  2646.     $(ADDMOD) $(icfontab) -obj $(ccfonts1_)
  2647.     $(ADDMOD) $(icfontab) -obj $(ccfonts2_)
  2648.     $(ADDMOD) $(icfontab) -obj $(ccfonts3_)
  2649.     $(ADDMOD) $(icfontab) -obj $(ccfonts4_)
  2650.     $(ADDMOD) $(icfontab) -obj $(ccfonts5_)
  2651.     $(ADDMOD) $(icfontab) -obj $(ccfonts6_)
  2652.     $(ADDMOD) $(icfontab) -obj $(ccfonts7_)
  2653.     $(ADDMOD) $(icfontab) -obj $(ccfonts8_)
  2654.     $(ADDMOD) $(icfontab) -obj $(ccfonts9_)
  2655.     $(ADDMOD) $(icfontab) -obj $(ccfonts10_)
  2656.     $(ADDMOD) $(icfontab) -obj $(ccfonts11_)
  2657.     $(ADDMOD) $(icfontab) -obj $(ccfonts12_)
  2658.     $(ADDMOD) $(icfontab) -obj $(ccfonts13_)
  2659.     $(ADDMOD) $(icfontab) -obj $(ccfonts14_)
  2660.     $(ADDMOD) $(icfontab) -obj $(ccfonts15_)
  2661.  
  2662. $(icfontab).$(OBJ): icfontab.c $(AK) $(ccfont_h) $(gconfigf_h)
  2663.     $(CP_) $(gconfigf_h) gconfigf.h
  2664.     $(CCCF) icfontab.c
  2665.  
  2666. # Strictly speaking, ccfonts shouldn't need to include type1,
  2667. # since one could choose to precompile only Type 0 fonts,
  2668. # but getting this exactly right would be too much work.
  2669. ccfonts=ccfonts$(CONFIG)
  2670. $(ccfonts).dev: $(MAKEFILE) $(INT_MAK) type1.dev iccfont.$(OBJ) \
  2671.   $(ccfont_table).dev
  2672.     $(SETMOD) $(ccfonts) -include type1
  2673.     $(ADDMOD) $(ccfonts) -include $(ccfont_table)
  2674.     $(ADDMOD) $(ccfonts) -obj iccfont.$(OBJ)
  2675.     $(ADDMOD) $(ccfonts) -oper ccfonts
  2676.     $(ADDMOD) $(ccfonts) -ps $(ccfonts_ps)
  2677.  
  2678. iccfont.$(OBJ): iccfont.c $(GH) $(string__h)\
  2679.  $(gsstruct_h) $(ccfont_h) $(errors_h)\
  2680.  $(ialloc_h) $(idict_h) $(ifont_h) $(iname_h) $(isave_h) $(iutil_h)\
  2681.  $(oper_h) $(ostack_h) $(store_h) $(stream_h) $(strimpl_h) $(sfilter_h) $(iscan_h)
  2682.     $(CCCF) iccfont.c
  2683.  
  2684. # ---------------- Compiled initialization code ---------------- #
  2685.  
  2686. # We select either iccinit0 or iccinit1 depending on COMPILE_INITS.
  2687.  
  2688. iccinit0.$(OBJ): iccinit0.c $(stdpre_h)
  2689.     $(CCCF) -I. -I$(srcdir) $(srcdir)/iccinit0.c
  2690.  
  2691. iccinit1.$(OBJ): gs_init.$(OBJ)
  2692.     $(CP_) gs_init.$(OBJ) iccinit1.$(OBJ)
  2693.  
  2694. # All the gs_*.ps files should be prerequisites of gs_init.c,
  2695. # but we don't have any convenient list of them.
  2696. gs_init.c: $(GS_INIT) $(GENINIT_XE) $(gconfig_h)
  2697.     cp $(srcdir)/gs_*.ps .
  2698.     $(EXP)geninit $(GS_INIT) $(gconfig_h) -c gs_init.c
  2699.  
  2700. gs_init.$(OBJ): gs_init.c $(stdpre_h)
  2701.     $(CCCF) -I. -I$(srcdir) gs_init.c
  2702.  
  2703. # ======================== PostScript Level 2 ======================== #
  2704.  
  2705. ### In addition to the true Level 2 configuration, we define a 'minimal'
  2706. ### Level 2 that can be used with -dDEBUG in the 16-bit Windows environment.
  2707. ### This also may require trimming down the sizes of the stacks in interp.c.
  2708.  
  2709. lev2min.dev: $(INT_MAK) $(ECHOGS_XE) \
  2710.   psbase.dev devctrl.dev color.dev \
  2711.   dps2lib.dev dps2read.dev fdecode.dev path1.dev type1.dev \
  2712.   psl2lib.dev psl2read.dev
  2713.     $(SETMOD) lev2min -include psbase devctrl color
  2714.     $(ADDMOD) lev2min -include dps2lib dps2read fdecode path1 type1
  2715.     $(ADDMOD) lev2min -include psl2lib psl2read
  2716.     $(ADDMOD) lev2min -emulator PostScript PostScriptLevel1 PostScriptLevel2
  2717.  
  2718. level2.dev: $(INT_MAK) $(ECHOGS_XE) \
  2719.  cidfont.dev cie.dev cmapread.dev compfont.dev dct.dev devctrl.dev dpsand2.dev\
  2720.  filter.dev level1.dev pattern.dev psl2lib.dev psl2read.dev sepr.dev\
  2721.  type42.dev xfilter.dev
  2722.     $(SETMOD) level2 -include cidfont cie cmapread compfont
  2723.     $(ADDMOD) level2 -include dct devctrl dpsand2 filter
  2724.     $(ADDMOD) level2 -include level1 pattern psl2lib psl2read
  2725.     $(ADDMOD) level2 -include sepr type42 xfilter
  2726.     $(ADDMOD) level2 -emulator PostScript PostScriptLevel2
  2727.  
  2728. # Define basic Level 2 language support.
  2729. # This is the minimum required for CMap and CIDFont support.
  2730.  
  2731. psl2int_=iutil2.$(OBJ) zmisc2.$(OBJ) zusparam.$(OBJ)
  2732. psl2int.dev: $(INT_MAK) $(ECHOGS_XE) $(psl2int_) dps2int.dev
  2733.     $(SETMOD) psl2int $(psl2int_)
  2734.     $(ADDMOD) psl2int -include dps2int
  2735.     $(ADDMOD) psl2int -oper zmisc2 zusparam
  2736.     $(ADDMOD) psl2int -ps gs_lev2 gs_res
  2737.  
  2738. iutil2.$(OBJ): iutil2.c $(GH) $(memory__h) $(string__h)\
  2739.  $(gsparam_h) $(gsutil_h)\
  2740.  $(errors_h) $(opcheck_h) $(imemory_h) $(iutil_h) $(iutil2_h)
  2741.  
  2742. zmisc2.$(OBJ): zmisc2.c $(OP) $(memory__h) $(string__h)\
  2743.  $(idict_h) $(idparam_h) $(iparam_h) $(dstack_h) $(estack_h)\
  2744.  $(ilevel_h) $(iname_h) $(iutil2_h) $(ivmspace_h) $(store_h)
  2745.  
  2746. # Note that zusparam includes both Level 1 and Level 2 operators.
  2747. zusparam.$(OBJ): zusparam.c $(OP) $(memory__h) $(string__h)\
  2748.  $(gscdefs_h) $(gsfont_h) $(gsstruct_h) $(gsutil_h) $(gxht_h)\
  2749.  $(ialloc_h) $(idict_h) $(idparam_h) $(iparam_h) $(dstack_h) $(estack_h)\
  2750.  $(iname_h) $(iutil2_h) $(store_h)
  2751.  
  2752. # Define full Level 2 support.
  2753.  
  2754. psl2read_=zcolor2.$(OBJ) zcsindex.$(OBJ) zht2.$(OBJ) zimage2.$(OBJ)
  2755. # Note that zmisc2 includes both Level 1 and Level 2 operators.
  2756. psl2read.dev: $(INT_MAK) $(ECHOGS_XE) $(psl2read_) psl2int.dev dps2read.dev
  2757.     $(SETMOD) psl2read $(psl2read_)
  2758.     $(ADDMOD) psl2read -include psl2int dps2read
  2759.     $(ADDMOD) psl2read -oper zcolor2_l2 zcsindex_l2
  2760.     $(ADDMOD) psl2read -oper zht2_l2 zimage2_l2
  2761.  
  2762. zcolor2.$(OBJ): zcolor2.c $(OP)\
  2763.  $(gscolor_h) $(gsmatrix_h) $(gsstruct_h)\
  2764.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) $(gxfixed_h) $(gxpcolor_h)\
  2765.  $(estack_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(istruct_h)\
  2766.  $(store_h)
  2767.  
  2768. zcsindex.$(OBJ): zcsindex.c $(OP) $(memory__h) \
  2769.   $(gscolor_h) $(gsstruct_h) $(gxfixed_h) $(gxcolor2_h) $(gxcspace_h) $(gsmatrix_h) \
  2770.   $(ialloc_h) $(icsmap_h) $(estack_h) $(igstate_h) $(ivmspace_h) $(store_h)
  2771.  
  2772. zht2.$(OBJ): zht2.c $(OP) \
  2773.   $(gsstruct_h) $(gxdevice_h) $(gzht_h) \
  2774.   $(estack_h) $(ialloc_h) $(icolor_h) $(idict_h) $(idparam_h) $(igstate_h) \
  2775.   $(store_h)
  2776.  
  2777. zimage2.$(OBJ): zimage2.c $(OP) $(math__h) $(memory__h)\
  2778.  $(gscolor_h) $(gscolor2_h) $(gscspace_h) $(gsimage_h) $(gsmatrix_h)\
  2779.  $(idict_h) $(idparam_h) $(iimage_h) $(ilevel_h) $(igstate_h)
  2780.  
  2781. # ---------------- Device control ---------------- #
  2782. # This is a catch-all for setpagedevice and IODevices.
  2783.  
  2784. devctrl_=zdevice2.$(OBJ) ziodev2.$(OBJ) zmedia2.$(OBJ) zdevcal.$(OBJ)
  2785. devctrl.dev: $(INT_MAK) $(ECHOGS_XE) $(devctrl_)
  2786.     $(SETMOD) devctrl $(devctrl_)
  2787.     $(ADDMOD) devctrl -oper zdevice2_l2 ziodev2_l2 zmedia2_l2
  2788.     $(ADDMOD) devctrl -iodev null ram calendar
  2789.     $(ADDMOD) devctrl -ps gs_setpd
  2790.  
  2791. zdevice2.$(OBJ): zdevice2.c $(OP) $(math__h) $(memory__h)\
  2792.  $(dstack_h) $(estack_h) $(idict_h) $(idparam_h) $(igstate_h) $(iname_h) $(store_h)\
  2793.  $(gxdevice_h) $(gsstate_h)
  2794.  
  2795. ziodev2.$(OBJ): ziodev2.c $(OP) $(string__h) $(gp_h)\
  2796.  $(gxiodev_h) $(stream_h) $(files_h) $(iparam_h) $(iutil2_h) $(store_h)
  2797.  
  2798. zmedia2.$(OBJ): zmedia2.c $(OP) $(math__h) $(memory__h) \
  2799.   $(gsmatrix_h) $(idict_h) $(idparam_h) $(iname_h) $(store_h)
  2800.  
  2801. zdevcal.$(OBJ): zdevcal.c $(GH) $(time__h) \
  2802.   $(gxiodev_h) $(iparam_h) $(istack_h)
  2803.  
  2804. # ---------------- Filters other than the ones in sfilter.c ---------------- #
  2805.  
  2806. # Standard Level 2 decoding filters only.  The PDF configuration uses this.
  2807. fdecode_=scantab.$(OBJ) sfilter2.$(OBJ) zfdecode.$(OBJ)
  2808. fdecode.dev: $(INT_MAK) $(ECHOGS_XE) $(fdecode_) cfd.dev lzwd.dev pdiff.dev pngp.dev rld.dev
  2809.     $(SETMOD) fdecode $(fdecode_)
  2810.     $(ADDMOD) fdecode -include cfd lzwd pdiff pngp rld
  2811.     $(ADDMOD) fdecode -oper zfdecode
  2812.  
  2813. zfdecode.$(OBJ): zfdecode.c $(OP) $(memory__h)\
  2814.  $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) \
  2815.  $(sa85x_h) $(scf_h) $(scfx_h) $(sfilter_h) $(slzwx_h) $(spdiffx_h) $(spngpx_h) \
  2816.  $(store_h) $(stream_h) $(strimpl_h)
  2817.  
  2818. # Complete Level 2 filter capability.
  2819. filter_=zfilter2.$(OBJ)
  2820. filter.dev: $(INT_MAK) $(ECHOGS_XE) fdecode.dev $(filter_) cfe.dev lzwe.dev rle.dev
  2821.     $(SETMOD) filter -include fdecode
  2822.     $(ADDMOD) filter -obj $(filter_)
  2823.     $(ADDMOD) filter -include cfe lzwe rle
  2824.     $(ADDMOD) filter -oper zfilter2
  2825.  
  2826. zfilter2.$(OBJ): zfilter2.c $(OP) $(memory__h)\
  2827.   $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) $(store_h) \
  2828.   $(sfilter_h) $(scfx_h) $(slzwx_h) $(spdiffx_h) $(spngpx_h) $(strimpl_h)
  2829.  
  2830. # Extensions beyond Level 2 standard.
  2831. xfilter_=sbhc.$(OBJ) sbwbs.$(OBJ) shcgen.$(OBJ) smtf.$(OBJ) \
  2832.  zfilterx.$(OBJ)
  2833. xfilter.dev: $(INT_MAK) $(ECHOGS_XE) $(xfilter_) pcxd.dev pngp.dev
  2834.     $(SETMOD) xfilter $(xfilter_)
  2835.     $(ADDMOD) xfilter -include pcxd
  2836.     $(ADDMOD) xfilter -oper zfilterx
  2837.  
  2838. sbhc.$(OBJ): sbhc.c $(AK) $(memory__h) $(stdio__h)\
  2839.  $(gdebug_h) $(sbhc_h) $(shcgen_h) $(strimpl_h)
  2840.  
  2841. sbwbs.$(OBJ): sbwbs.c $(AK) $(stdio__h) $(memory__h) \
  2842.   $(gdebug_h) $(sbwbs_h) $(sfilter_h) $(strimpl_h)
  2843.  
  2844. shcgen.$(OBJ): shcgen.c $(AK) $(memory__h) $(stdio__h)\
  2845.  $(gdebug_h) $(gserror_h) $(gserrors_h) $(gsmemory_h)\
  2846.  $(scommon_h) $(shc_h) $(shcgen_h)
  2847.  
  2848. smtf.$(OBJ): smtf.c $(AK) $(stdio__h) \
  2849.   $(smtf_h) $(strimpl_h)
  2850.  
  2851. zfilterx.$(OBJ): zfilterx.c $(OP) $(memory__h)\
  2852.  $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h)\
  2853.  $(store_h) $(sfilter_h) $(sbhc_h) $(sbtx_h) $(sbwbs_h) $(shcgen_h)\
  2854.  $(smtf_h) $(spcxx_h) $(strimpl_h)
  2855.  
  2856. # ---------------- Binary tokens ---------------- #
  2857.  
  2858. btoken_=iscanbin.$(OBJ) zbseq.$(OBJ)
  2859. btoken.dev: $(INT_MAK) $(ECHOGS_XE) $(btoken_)
  2860.     $(SETMOD) btoken $(btoken_)
  2861.     $(ADDMOD) btoken -oper zbseq_l2
  2862.     $(ADDMOD) btoken -ps gs_btokn
  2863.  
  2864. bseq_h=bseq.h
  2865. btoken_h=btoken.h
  2866.  
  2867. iscanbin.$(OBJ): iscanbin.c $(GH) $(math__h) $(memory__h) $(errors_h)\
  2868.  $(gsutil_h) $(ialloc_h) $(ibnum_h) $(idict_h) $(iname_h)\
  2869.  $(iscan_h) $(iutil_h) $(ivmspace_h)\
  2870.  $(bseq_h) $(btoken_h) $(dstack_h) $(ostack_h)\
  2871.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2872.  
  2873. zbseq.$(OBJ): zbseq.c $(OP) $(memory__h)\
  2874.  $(ialloc_h) $(idict_h) $(isave_h)\
  2875.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)\
  2876.  $(iname_h) $(ibnum_h) $(btoken_h) $(bseq_h)
  2877.  
  2878. # ---------------- User paths & insideness testing ---------------- #
  2879.  
  2880. upath_=zupath.$(OBJ) ibnum.$(OBJ)
  2881. upath.dev: $(INT_MAK) $(ECHOGS_XE) $(upath_)
  2882.     $(SETMOD) upath $(upath_)
  2883.     $(ADDMOD) upath -oper zupath_l2
  2884.  
  2885. zupath.$(OBJ): zupath.c $(OP) \
  2886.   $(idict_h) $(dstack_h) $(iutil_h) $(igstate_h) $(store_h) $(stream_h) $(ibnum_h) \
  2887.   $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gsstate_h) \
  2888.   $(gxfixed_h) $(gxdevice_h) $(gzpath_h) $(gzstate_h)
  2889.  
  2890. # -------- Additions common to Display PostScript and Level 2 -------- #
  2891.  
  2892. dpsand2.dev: $(INT_MAK) $(ECHOGS_XE) btoken.dev color.dev upath.dev dps2lib.dev dps2read.dev
  2893.     $(SETMOD) dpsand2 -include btoken color upath dps2lib dps2read
  2894.  
  2895. dps2int_=zvmem2.$(OBJ) zdps1.$(OBJ)
  2896. # Note that zvmem2 includes both Level 1 and Level 2 operators.
  2897. dps2int.dev: $(INT_MAK) $(ECHOGS_XE) $(dps2int_)
  2898.     $(SETMOD) dps2int $(dps2int_)
  2899.     $(ADDMOD) dps2int -oper zvmem2 zdps1_l2
  2900.     $(ADDMOD) dps2int -ps gs_dps1
  2901.  
  2902. dps2read_=ibnum.$(OBJ) zchar2.$(OBJ)
  2903. dps2read.dev: $(INT_MAK) $(ECHOGS_XE) $(dps2read_) dps2int.dev
  2904.     $(SETMOD) dps2read $(dps2read_)
  2905.     $(ADDMOD) dps2read -include dps2int
  2906.     $(ADDMOD) dps2read -oper ireclaim_l2 zchar2_l2
  2907.     $(ADDMOD) dps2read -ps gs_dps2
  2908.  
  2909. ibnum.$(OBJ): ibnum.c $(GH) $(math__h) $(memory__h)\
  2910.  $(errors_h) $(stream_h) $(ibnum_h) $(imemory_h) $(iutil_h)
  2911.  
  2912. zchar2.$(OBJ): zchar2.c $(OP)\
  2913.  $(gschar_h) $(gsmatrix_h) $(gspath_h) $(gsstruct_h)\
  2914.  $(gxchar_h) $(gxfixed_h) $(gxfont_h)\
  2915.  $(ialloc_h) $(ichar_h) $(estack_h) $(ifont_h) $(iname_h) $(igstate_h)\
  2916.  $(store_h) $(stream_h) $(ibnum_h)
  2917.  
  2918. zdps1.$(OBJ): zdps1.c $(OP) \
  2919.   $(gsmatrix_h) $(gspath_h) $(gspath2_h) $(gsstate_h) \
  2920.   $(ialloc_h) $(ivmspace_h) $(igstate_h) $(store_h) $(stream_h) $(ibnum_h)
  2921.  
  2922. zvmem2.$(OBJ): zvmem2.c $(OP) \
  2923.   $(estack_h) $(ialloc_h) $(ivmspace_h) $(store_h)
  2924.  
  2925. # ---------------- Display PostScript ---------------- #
  2926.  
  2927. # The context machinery is NOT USABLE in this release.  DO NOT USE IT.
  2928. # IT WILL CAUSE AN IMMEDIATE CRASH.
  2929. #dps_=zdps.$(OBJ) zcontext.$(OBJ)
  2930. dps_=zdps.$(OBJ)
  2931. # Note that zcontext is omitted from the -oper list below.
  2932. dps.dev: $(INT_MAK) $(ECHOGS_XE) level2.dev $(dps_)
  2933.     $(SETMOD) dps -include level2
  2934.     $(ADDMOD) dps -obj $(dps_)
  2935.     $(ADDMOD) dps -oper zdps
  2936.     $(ADDMOD) dps -ps gs_dps
  2937.  
  2938. zdps.$(OBJ): zdps.c $(OP)\
  2939.  $(gsstate_h) $(igstate_h) $(iname_h) $(store_h)
  2940.  
  2941. zcontext.$(OBJ): zcontext.c $(OP) $(gp_h) $(memory__h)\
  2942.  $(gsexit_h) $(gsstruct_h) $(gsutil_h) $(gxalloc_h)\
  2943.  $(icontext_h) $(idict_h) $(igstate_h) $(istruct_h)\
  2944.  $(dstack_h) $(estack_h) $(ostack_h) $(store_h)
  2945.  
  2946. # ---------------- NeXT Display PostScript ---------------- #
  2947. #**************** NOT READY FOR USE YET ****************#
  2948.  
  2949. dpsnext_=zdpnext.$(OBJ)
  2950. dpsnext.dev: $(INT_MAK) $(ECHOGS_XE) dps.dev $(dpsnext_) gs_dpnxt.ps
  2951.     $(SETMOD) dpsnext -include dps
  2952.     $(ADDMOD) dpsnext -obj $(dpsnext_)
  2953.     $(ADDMOD) dpsnext -oper zdpnext
  2954.     $(ADDMOD) dpsnext -ps gs_dpnxt
  2955.  
  2956. zdpnext.$(OBJ): zdpnext.c $(OP)\
  2957.  $(gscspace_h) $(gsiparam_h) $(gsmatrix_h) $(gxcvalue_h) $(gxsample_h)\
  2958.  $(ialloc_h) $(igstate_h) $(iimage_h)
  2959.  
  2960. # -------- Composite (PostScript Type 0) font support -------- #
  2961.  
  2962. compfont.dev: $(INT_MAK) $(ECHOGS_XE) psf0lib.dev psf0read.dev
  2963.     $(SETMOD) compfont -include psf0lib psf0read
  2964.  
  2965. # We always include zfcmap.$(OBJ) because zfont0.c refers to it,
  2966. # and it's not worth the trouble to exclude.
  2967. psf0read_=zchar2.$(OBJ) zfcmap.$(OBJ) zfont0.$(OBJ)
  2968. psf0read.dev: $(INT_MAK) $(ECHOGS_XE) $(psf0read_)
  2969.     $(SETMOD) psf0read $(psf0read_)
  2970.     $(ADDMOD) psf0read -oper zfont0 zchar2 zfcmap
  2971.  
  2972. zfcmap.$(OBJ): zfcmap.c $(OP)\
  2973.  $(gsmatrix_h) $(gsstruct_h) $(gsutil_h)\
  2974.  $(gxfcmap_h) $(gxfont_h)\
  2975.  $(ialloc_h) $(idict_h) $(idparam_h) $(ifont_h) $(iname_h) $(store_h)
  2976.  
  2977. zfont0.$(OBJ): zfont0.c $(OP)\
  2978.  $(gschar_h) $(gsstruct_h)\
  2979.  $(gxdevice_h) $(gxfcmap_h) $(gxfixed_h) $(gxfont_h) $(gxfont0_h) $(gxmatrix_h)\
  2980.  $(gzstate_h)\
  2981.  $(bfont_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(iname_h)\
  2982.  $(store_h)
  2983.  
  2984. # ---------------- CMap support ---------------- #
  2985. # Note that this requires at least minimal Level 2 support,
  2986. # because it requires findresource.
  2987.  
  2988. cmapread_=zfcmap.$(OBJ)
  2989. cmapread.dev: $(INT_MAK) $(ECHOGS_XE) $(cmapread_) cmaplib.dev psl2int.dev
  2990.     $(SETMOD) cmapread $(cmapread_)
  2991.     $(ADDMOD) cmapread -include cmaplib psl2int
  2992.     $(ADDMOD) cmapread -oper zfcmap
  2993.     $(ADDMOD) cmapread -ps gs_cmap
  2994.  
  2995. # ---------------- CIDFont support ---------------- #
  2996. # Note that this requires at least minimal Level 2 support,
  2997. # because it requires findresource.
  2998.  
  2999. cidread_=zcid.$(OBJ)
  3000. cidfont.dev: $(INT_MAK) $(ECHOGS_XE) psf1read.dev psl2int.dev type42.dev\
  3001.  $(cidread_)
  3002.     $(SETMOD) cidfont $(cidread_)
  3003.     $(ADDMOD) cidfont -include psf1read psl2int type42
  3004.     $(ADDMOD) cidfont -ps gs_cidfn
  3005.     $(ADDMOD) cidfont -oper zcid
  3006.  
  3007. zcid.$(OBJ): zcid.c $(OP)\
  3008.  $(gsccode_h) $(gsmatrix_h) $(gxfont_h)\
  3009.  $(bfont_h) $(iname_h) $(store_h)
  3010.  
  3011. # ---------------- CIE color ---------------- #
  3012.  
  3013. cieread_=zcie.$(OBJ) zcrd.$(OBJ)
  3014. cie.dev: $(INT_MAK) $(ECHOGS_XE) $(cieread_) cielib.dev
  3015.     $(SETMOD) cie $(cieread_)
  3016.     $(ADDMOD) cie -oper zcie_l2 zcrd_l2
  3017.     $(ADDMOD) cie -include cielib
  3018.  
  3019. icie_h=icie.h
  3020.  
  3021. zcie.$(OBJ): zcie.c $(OP) $(math__h) $(memory__h) \
  3022.   $(gscolor2_h) $(gscie_h) $(gsstruct_h) $(gxcspace_h) \
  3023.   $(ialloc_h) $(icie_h) $(idict_h) $(idparam_h) $(estack_h) \
  3024.   $(isave_h) $(igstate_h) $(ivmspace_h) $(store_h)
  3025.  
  3026. zcrd.$(OBJ): zcrd.c $(OP) $(math__h) \
  3027.   $(gscspace_h) $(gscolor2_h) $(gscie_h) $(gsstruct_h) \
  3028.   $(ialloc_h) $(icie_h) $(idict_h) $(idparam_h) $(estack_h) \
  3029.   $(isave_h) $(igstate_h) $(ivmspace_h) $(store_h)
  3030.  
  3031. # ---------------- Pattern color ---------------- #
  3032.  
  3033. pattern.dev: $(INT_MAK) $(ECHOGS_XE) patlib.dev patread.dev
  3034.     $(SETMOD) pattern -include patlib patread
  3035.  
  3036. patread_=zpcolor.$(OBJ)
  3037. patread.dev: $(INT_MAK) $(ECHOGS_XE) $(patread_)
  3038.     $(SETMOD) patread $(patread_)
  3039.     $(ADDMOD) patread -oper zpcolor_l2
  3040.  
  3041. zpcolor.$(OBJ): zpcolor.c $(OP)\
  3042.  $(gscolor_h) $(gsmatrix_h) $(gsstruct_h)\
  3043.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)\
  3044.    $(gxfixed_h) $(gxpcolor_h)\
  3045.  $(estack_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(istruct_h)\
  3046.  $(store_h)
  3047.  
  3048. # ---------------- Separation color ---------------- #
  3049.  
  3050. seprread_=zcssepr.$(OBJ)
  3051. sepr.dev: $(INT_MAK) $(ECHOGS_XE) $(seprread_) seprlib.dev
  3052.     $(SETMOD) sepr $(seprread_)
  3053.     $(ADDMOD) sepr -oper zcssepr_l2
  3054.     $(ADDMOD) sepr -include seprlib
  3055.  
  3056. zcssepr.$(OBJ): zcssepr.c $(OP) \
  3057.   $(gscolor_h) $(gscsepr_h) $(gsmatrix_h) $(gsstruct_h) \
  3058.   $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) \
  3059.   $(ialloc_h) $(icsmap_h) $(estack_h) $(igstate_h) $(ivmspace_h) $(store_h)
  3060.  
  3061. # ---------------- DCT filters ---------------- #
  3062. # The definitions for jpeg*.dev are in jpeg.mak.
  3063.  
  3064. dct.dev: $(INT_MAK) $(ECHOGS_XE) dcte.dev dctd.dev
  3065.     $(SETMOD) dct -include dcte dctd
  3066.  
  3067. # Common code
  3068.  
  3069. dctc_=zfdctc.$(OBJ)
  3070.  
  3071. zfdctc.$(OBJ): zfdctc.c $(GH) $(memory__h) $(stdio__h)\
  3072.  $(errors_h) $(opcheck_h)\
  3073.  $(idict_h) $(idparam_h) $(imemory_h) $(ipacked_h) $(iutil_h)\
  3074.  $(sdct_h) $(sjpeg_h) $(strimpl_h)\
  3075.  jpeglib.h
  3076.  
  3077. # Encoding (compression)
  3078.  
  3079. dcte_=$(dctc_) zfdcte.$(OBJ)
  3080. dcte.dev: $(INT_MAK) $(ECHOGS_XE) sdcte.dev $(dcte_)
  3081.     $(SETMOD) dcte -include sdcte
  3082.     $(ADDMOD) dcte -obj $(dcte_)
  3083.     $(ADDMOD) dcte -oper zfdcte
  3084.  
  3085. zfdcte.$(OBJ): zfdcte.c $(OP) $(memory__h) $(stdio__h)\
  3086.   $(idict_h) $(idparam_h) $(ifilter_h) $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  3087.   jpeglib.h
  3088.  
  3089. # Decoding (decompression)
  3090.  
  3091. dctd_=$(dctc_) zfdctd.$(OBJ)
  3092. dctd.dev: $(INT_MAK) $(ECHOGS_XE) sdctd.dev $(dctd_)
  3093.     $(SETMOD) dctd -include sdctd
  3094.     $(ADDMOD) dctd -obj $(dctd_)
  3095.     $(ADDMOD) dctd -oper zfdctd
  3096.  
  3097. zfdctd.$(OBJ): zfdctd.c $(OP) $(memory__h) $(stdio__h)\
  3098.  $(ifilter_h) $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  3099.  jpeglib.h
  3100.  
  3101. # ---------------- zlib/Flate filters ---------------- #
  3102.  
  3103. fzlib.dev: $(INT_MAK) $(ECHOGS_XE) zfzlib.$(OBJ) szlibe.dev szlibd.dev
  3104.     $(SETMOD) fzlib -include szlibe szlibd
  3105.     $(ADDMOD) fzlib -obj zfzlib.$(OBJ)
  3106.     $(ADDMOD) fzlib -oper zfzlib
  3107.  
  3108. zfzlib.$(OBJ): zfzlib.c $(OP) \
  3109.   $(errors_h) $(idict_h) $(ifilter_h) \
  3110.   $(spdiffx_h) $(spngpx_h) $(strimpl_h) $(szlibx_h)
  3111.     $(CCCZ) $(srcdir)/zfzlib.c
  3112.  
  3113. # ================================ PDF ================================ #
  3114.  
  3115. # We need most of the Level 2 interpreter to do PDF, but not all of it.
  3116. # In fact, we don't even need all of a Level 1 interpreter.
  3117.  
  3118. # Because of the way the PDF encodings are defined, they must get loaded
  3119. # before we install the Level 2 resource machinery.
  3120. # On the other hand, the PDF .ps files must get loaded after
  3121. # level2dict is defined.
  3122. pdfmin.dev: $(INT_MAK) $(ECHOGS_XE)\
  3123.  psbase.dev color.dev dps2lib.dev dps2read.dev\
  3124.  fdecode.dev type1.dev pdffonts.dev psl2lib.dev psl2read.dev pdfread.dev
  3125.     $(SETMOD) pdfmin -include psbase color dps2lib dps2read
  3126.     $(ADDMOD) pdfmin -include fdecode type1
  3127.     $(ADDMOD) pdfmin -include pdffonts psl2lib psl2read pdfread
  3128.     $(ADDMOD) pdfmin -emulator PDF
  3129.  
  3130. pdf.dev: $(INT_MAK) $(ECHOGS_XE)\
  3131.  pdfmin.dev cff.dev cidfont.dev cie.dev compfont.dev cmapread.dev dctd.dev\
  3132.  ttfont.dev type2.dev
  3133.     $(SETMOD) pdf -include pdfmin cff cidfont cie cmapread compfont dctd
  3134.     $(ADDMOD) pdf -include ttfont type2
  3135.  
  3136. # Reader only
  3137.  
  3138. pdffonts.dev: $(INT_MAK) $(ECHOGS_XE) \
  3139.   gs_mex_e.ps gs_mro_e.ps gs_pdf_e.ps gs_wan_e.ps
  3140.     $(SETMOD) pdffonts -ps gs_mex_e gs_mro_e gs_pdf_e gs_wan_e
  3141.  
  3142. # pdf_2ps must be the last .ps file loaded.
  3143. pdfread.dev: $(INT_MAK) $(ECHOGS_XE) fzlib.dev
  3144.     $(SETMOD) pdfread -include fzlib
  3145.     $(ADDMOD) pdfread -ps gs_pdf gs_l2img
  3146.     $(ADDMOD) pdfread -ps pdf_base pdf_draw pdf_font pdf_main pdf_sec
  3147.     $(ADDMOD) pdfread -ps pdf_2ps
  3148.  
  3149. # ============================= Main program ============================== #
  3150.  
  3151. gs.$(OBJ): gs.c $(GH) \
  3152.   $(imain_h) $(imainarg_h) $(iminst_h)
  3153.  
  3154. icontext.$(OBJ): icontext.c $(GH)\
  3155.  $(gsstruct_h) $(gxalloc_h)\
  3156.  $(dstack_h) $(estack_h) $(ostack_h)\
  3157.  $(icontext_h) $(igstate_h) $(store_h)
  3158.  
  3159. imainarg.$(OBJ): imainarg.c $(GH) $(ctype__h) $(memory__h) $(string__h) \
  3160.   $(gp_h) \
  3161.   $(gsargs_h) $(gscdefs_h) $(gsdevice_h) $(gsmdebug_h) $(gxdevice_h) $(gxdevmem_h) \
  3162.   $(errors_h) $(estack_h) $(files_h) \
  3163.   $(ialloc_h) $(imain_h) $(imainarg_h) $(iminst_h) \
  3164.   $(iname_h) $(interp_h) $(iscan_h) $(iutil_h) $(ivmspace_h) \
  3165.   $(ostack_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3166.  
  3167. imain.$(OBJ): imain.c $(GH) $(memory__h) $(string__h)\
  3168.  $(gp_h) $(gslib_h) $(gsmatrix_h) $(gsutil_h) $(gxdevice_h)\
  3169.  $(dstack_h) $(errors_h) $(estack_h) $(files_h)\
  3170.  $(ialloc_h) $(idebug_h) $(idict_h) $(iname_h) $(interp_h)\
  3171.  $(isave_h) $(iscan_h) $(ivmspace_h)\
  3172.  $(main_h) $(oper_h) $(ostack_h)\
  3173.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3174.  
  3175. interp.$(OBJ): interp.c $(GH) $(memory__h) $(string__h)\
  3176.  $(gsstruct_h)\
  3177.  $(dstack_h) $(errors_h) $(estack_h) $(files_h)\
  3178.  $(ialloc_h) $(iastruct_h) $(inamedef_h) $(idict_h) $(interp_h) $(ipacked_h)\
  3179.  $(iscan_h) $(isave_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  3180.  $(oper_h) $(ostack_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3181.     $(CCINT) -I. $(srcdir)/interp.c
  3182.  
  3183. ireclaim.$(OBJ): ireclaim.c $(GH) \
  3184.   $(errors_h) $(gsstruct_h) $(iastate_h) $(opdef_h) $(store_h) \
  3185.   $(dstack_h) $(estack_h) $(ostack_h)
  3186. #    Copyright (C) 1994, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3187. # This file is part of Aladdin Ghostscript.
  3188. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3189. # or distributor accepts any responsibility for the consequences of using it,
  3190. # or for whether it serves any particular purpose or works at all, unless he
  3191. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3192. # License (the "License") for full details.
  3193. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3194. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3195. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3196. # under certain conditions described in the License.  Among other things, the
  3197. # License requires that the copyright notice and this notice be preserved on
  3198. # all copies.
  3199.  
  3200. # makefile for Independent JPEG Group library code.
  3201.  
  3202. # NOTE: This makefile is only known to work with the following versions
  3203. # of the IJG library: 6, 6a.
  3204. # As of May 11, 1996, version 6a is the current version.
  3205. #
  3206. # You can get the IJG library by Internet anonymous FTP from the following
  3207. # places:
  3208. #    Standard distribution (tar + gzip format, Unix end-of-line):
  3209. #        ftp.uu.net:/graphics/jpeg/jpegsrc.v*.tar.gz
  3210. #        ftp.cs.wisc.edu:/ghost/jpegsrc.v*.tar.gz
  3211. #    MS-DOS archive (PKZIP a.k.a. zip format, MS-DOS end-of-line):
  3212. #        ftp.simtel.net:/pub/simtelnet/msdos/graphics/jpegsr*.zip
  3213. #        ftp.cs.wisc.edu:/ghost/jpeg-*.zip
  3214. # The first site named above (ftp.uu.net and ftp.simtel.net) is supposed
  3215. # to be the master distribution site, so it may have a more up-to-date
  3216. # version; the ftp.cs.wisc.edu site is the master distribution site for
  3217. # Ghostscript, so it will always have IJG library versions known to be
  3218. # compatible with Ghostscript.
  3219. #
  3220. # If the version number, and hence the subdirectory name, changes, you
  3221. # will probably want to change the definitions of JSRCDIR and possibly
  3222. # JVERSION (in the platform-specific makefile, not here) to reflect this,
  3223. # since that way you can use the IJG archive without change.
  3224. #
  3225. # NOTE: For some obscure reason (probably a bug in djtarx), if you are
  3226. # compiling on a DesqView/X system, you should use the zip version of the
  3227. # IJG library, not the tar.gz version.
  3228.  
  3229. # Define the name of this makefile.
  3230. JPEG_MAK=jpeg.mak
  3231.  
  3232. # JSRCDIR is defined in the platform-specific makefile, not here,
  3233. # as the directory where the IJG library sources are stored.
  3234. #JSRCDIR=jpeg-6a
  3235. # JVERSION is defined in the platform-specific makefile, not here,
  3236. # as the IJG library major version number (currently "5" or "6").
  3237. #JVERSION=6
  3238.  
  3239. JSRC=$(JSRCDIR)$(D)
  3240. # CCCJ is defined in gs.mak.
  3241. #CCCJ=$(CCC) -I. -I$(JSRCDIR)
  3242.  
  3243. # We keep all of the IJG code in a separate directory so as not to
  3244. # inadvertently mix it up with Aladdin Enterprises' own code.
  3245. # However, we need our own version of jconfig.h, and our own "wrapper" for
  3246. # jmorecfg.h.  We also need a substitute for jerror.c, in order to
  3247. # keep the error strings out of the automatic data segment in
  3248. # 16-bit environments.  For v5*, we also need our own version of jpeglib.h
  3249. # in order to change MAX_BLOCKS_IN_MCU for Adobe compatibility.
  3250. # (This need will go away when IJG v6 is released.)
  3251.  
  3252. # Because this file is included after lib.mak, we can't use _h macros
  3253. # to express indirect dependencies; instead, we build the dependencies
  3254. # into the rules for copying the files.
  3255. jconfig_h=jconfig.h
  3256. jerror_h=jerror.h
  3257. jmorecfg_h=jmorecfg.h
  3258. jpeglib_h=jpeglib.h
  3259.  
  3260. jconfig.h: gsjconf.h $(std_h)
  3261.     $(CP_) $(srcdir)/gsjconf.h jconfig.h
  3262.  
  3263. jmorecfg.h: gsjmorec.h jmcorig.h
  3264.     $(CP_) $(srcdir)/gsjmorec.h jmorecfg.h
  3265.  
  3266. jmcorig.h: $(JSRC)jmorecfg.h
  3267.     $(CP_) $(JSRC)jmorecfg.h jmcorig.h
  3268.  
  3269. jpeglib.h: jlib$(JVERSION).h jconfig.h jmorecfg.h
  3270.     $(CP_) jlib$(JVERSION).h jpeglib.h
  3271.  
  3272. jlib5.h: gsjpglib.h
  3273.     $(CP_) $(srcdir)/gsjpglib.h jlib5.h
  3274.  
  3275. jlib6.h: $(JSRC)jpeglib.h
  3276.     $(CP_) $(JSRC)jpeglib.h jlib6.h
  3277.  
  3278. # To ensure that the compiler finds our versions of jconfig.h and jmorecfg.h,
  3279. # regardless of the compiler's search rule, we must copy up all .c files,
  3280. # and all .h files that include either of these files, directly or
  3281. # indirectly.  The only such .h files currently are jinclude.h and jpeglib.h.
  3282. # (Currently, we supply our own version of jpeglib.h -- see above.)
  3283. # Also, to avoid including the JSRCDIR directory name in our source files,
  3284. # we must also copy up any other .h files that our own code references.
  3285. # Currently, the only such .h files are jerror.h and jversion.h.
  3286.  
  3287. JHCOPY=jinclude.h jpeglib.h jerror.h jversion.h
  3288.  
  3289. jinclude.h: $(JSRC)jinclude.h
  3290.     $(CP_) $(JSRC)jinclude.h jinclude.h
  3291.  
  3292. #jpeglib.h: $(JSRC)jpeglib.h
  3293. #    $(CP_) $(JSRC)jpeglib.h jpeglib.h
  3294.  
  3295. jerror.h: $(JSRC)jerror.h
  3296.     $(CP_) $(JSRC)jerror.h jerror.h
  3297.  
  3298. jversion.h: $(JSRC)jversion.h
  3299.     $(CP_) $(JSRC)jversion.h jversion.h
  3300.  
  3301. # In order to avoid having to keep the dependency lists for the IJG code
  3302. # accurate, we simply make all of them depend on the only files that
  3303. # we are ever going to change, and on all the .h files that must be copied up.
  3304. # This is too conservative, but only hurts us if we are changing our own
  3305. # j*.h files, which happens only rarely during development.
  3306.  
  3307. JDEP=$(AK) $(jconfig_h) $(jerror_h) $(jmorecfg_h) $(JHCOPY)
  3308.  
  3309. # Code common to compression and decompression.
  3310.  
  3311. jpegc_=jcomapi.$(OBJ) jutils.$(OBJ) sjpegerr.$(OBJ) jmemmgr.$(OBJ)
  3312. jpegc.dev: $(JPEG_MAK) $(ECHOGS_XE) $(jpegc_)
  3313.     $(SETMOD) jpegc $(jpegc_)
  3314.  
  3315. jcomapi.$(OBJ): $(JSRC)jcomapi.c $(JDEP)
  3316.     $(CP_) $(JSRC)jcomapi.c .
  3317.     $(CCCJ) jcomapi.c
  3318.     $(RM_) jcomapi.c
  3319.  
  3320. jutils.$(OBJ): $(JSRC)jutils.c $(JDEP)
  3321.     $(CP_) $(JSRC)jutils.c .
  3322.     $(CCCJ) jutils.c
  3323.     $(RM_) jutils.c
  3324.  
  3325. # Note that sjpegerr replaces jerror.
  3326. sjpegerr.$(OBJ): $(srcdir)/sjpegerr.c $(JDEP)
  3327.     $(CCCF) -I. -I$(srcdir) $(srcdir)/sjpegerr.c
  3328.  
  3329. jmemmgr.$(OBJ): $(JSRC)jmemmgr.c $(JDEP)
  3330.     $(CP_) $(JSRC)jmemmgr.c .
  3331.     $(CCCJ) jmemmgr.c
  3332.     $(RM_) jmemmgr.c
  3333.  
  3334. # Encoding (compression) code.
  3335.  
  3336. jpege.dev: jpege$(JVERSION).dev
  3337.     $(CP_) jpege$(JVERSION).dev jpege.dev
  3338.  
  3339. jpege5=jcapi.$(OBJ)
  3340. jpege6=jcapimin.$(OBJ) jcapistd.$(OBJ) jcinit.$(OBJ)
  3341.  
  3342. jpege_1=jccoefct.$(OBJ) jccolor.$(OBJ) jcdctmgr.$(OBJ) 
  3343. jpege_2=jchuff.$(OBJ) jcmainct.$(OBJ) jcmarker.$(OBJ) jcmaster.$(OBJ)
  3344. jpege_3=jcparam.$(OBJ) jcprepct.$(OBJ) jcsample.$(OBJ) jfdctint.$(OBJ)
  3345.  
  3346. jpege5.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpege5) $(jpege_1) $(jpege_2) $(jpege_3)
  3347.     $(SETMOD) jpege5 $(jpege5)
  3348.     $(ADDMOD) jpege5 -include jpegc
  3349.     $(ADDMOD) jpege5 -obj $(jpege_1)
  3350.     $(ADDMOD) jpege5 -obj $(jpege_2)
  3351.     $(ADDMOD) jpege5 -obj $(jpege_3)
  3352.  
  3353. jpege6.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpege6) $(jpege_1) $(jpege_2) $(jpege_3)
  3354.     $(SETMOD) jpege6 $(jpege6)
  3355.     $(ADDMOD) jpege6 -include jpegc
  3356.     $(ADDMOD) jpege6 -obj $(jpege_1)
  3357.     $(ADDMOD) jpege6 -obj $(jpege_2)
  3358.     $(ADDMOD) jpege6 -obj $(jpege_3)
  3359.  
  3360. # jcapi.c is v5* only
  3361. jcapi.$(OBJ): $(JSRC)jcapi.c $(JDEP)
  3362.     $(CP_) $(JSRC)jcapi.c .
  3363.     $(CCCJ) jcapi.c
  3364.     $(RM_) jcapi.c
  3365.   
  3366. # jcapimin.c is new in v6
  3367. jcapimin.$(OBJ): $(JSRC)jcapimin.c $(JDEP)
  3368.     $(CP_) $(JSRC)jcapimin.c .
  3369.     $(CCCJ) jcapimin.c
  3370.     $(RM_) jcapimin.c
  3371.  
  3372. # jcapistd.c is new in v6
  3373. jcapistd.$(OBJ): $(JSRC)jcapistd.c $(JDEP)
  3374.     $(CP_) $(JSRC)jcapistd.c .
  3375.     $(CCCJ) jcapistd.c
  3376.     $(RM_) jcapistd.c
  3377.  
  3378. # jcinit.c is new in v6
  3379. jcinit.$(OBJ): $(JSRC)jcinit.c $(JDEP)
  3380.     $(CP_) $(JSRC)jcinit.c .
  3381.     $(CCCJ) jcinit.c
  3382.     $(RM_) jcinit.c
  3383.  
  3384. jccoefct.$(OBJ): $(JSRC)jccoefct.c $(JDEP)
  3385.     $(CP_) $(JSRC)jccoefct.c .
  3386.     $(CCCJ) jccoefct.c
  3387.     $(RM_) jccoefct.c
  3388.  
  3389. jccolor.$(OBJ): $(JSRC)jccolor.c $(JDEP)
  3390.     $(CP_) $(JSRC)jccolor.c .
  3391.     $(CCCJ) jccolor.c
  3392.     $(RM_) jccolor.c
  3393.  
  3394. jcdctmgr.$(OBJ): $(JSRC)jcdctmgr.c $(JDEP)
  3395.     $(CP_) $(JSRC)jcdctmgr.c .
  3396.     $(CCCJ) jcdctmgr.c
  3397.     $(RM_) jcdctmgr.c
  3398.  
  3399. jchuff.$(OBJ): $(JSRC)jchuff.c $(JDEP)
  3400.     $(CP_) $(JSRC)jchuff.c .
  3401.     $(CCCJ) jchuff.c
  3402.     $(RM_) jchuff.c
  3403.  
  3404. jcmainct.$(OBJ): $(JSRC)jcmainct.c $(JDEP)
  3405.     $(CP_) $(JSRC)jcmainct.c .
  3406.     $(CCCJ) jcmainct.c
  3407.     $(RM_) jcmainct.c
  3408.  
  3409. jcmarker.$(OBJ): $(JSRC)jcmarker.c $(JDEP)
  3410.     $(CP_) $(JSRC)jcmarker.c .
  3411.     $(CCCJ) jcmarker.c
  3412.     $(RM_) jcmarker.c
  3413.  
  3414. jcmaster.$(OBJ): $(JSRC)jcmaster.c $(JDEP)
  3415.     $(CP_) $(JSRC)jcmaster.c .
  3416.     $(CCCJ) jcmaster.c
  3417.     $(RM_) jcmaster.c
  3418.  
  3419. jcparam.$(OBJ): $(JSRC)jcparam.c $(JDEP)
  3420.     $(CP_) $(JSRC)jcparam.c .
  3421.     $(CCCJ) jcparam.c
  3422.     $(RM_) jcparam.c
  3423.  
  3424. jcprepct.$(OBJ): $(JSRC)jcprepct.c $(JDEP)
  3425.     $(CP_) $(JSRC)jcprepct.c .
  3426.     $(CCCJ) jcprepct.c
  3427.     $(RM_) jcprepct.c
  3428.  
  3429. jcsample.$(OBJ): $(JSRC)jcsample.c $(JDEP)
  3430.     $(CP_) $(JSRC)jcsample.c .
  3431.     $(CCCJ) jcsample.c
  3432.     $(RM_) jcsample.c
  3433.  
  3434. jfdctint.$(OBJ): $(JSRC)jfdctint.c $(JDEP)
  3435.     $(CP_) $(JSRC)jfdctint.c .
  3436.     $(CCCJ) jfdctint.c
  3437.     $(RM_) jfdctint.c
  3438.  
  3439. # Decompression code
  3440.  
  3441. jpegd.dev: jpegd$(JVERSION).dev
  3442.     $(CP_) jpegd$(JVERSION).dev jpegd.dev
  3443.  
  3444. jpegd5=jdapi.$(OBJ)
  3445. jpegd6=jdapimin.$(OBJ) jdapistd.$(OBJ) jdinput.$(OBJ) jdphuff.$(OBJ)
  3446.  
  3447. jpegd_1=jdcoefct.$(OBJ) jdcolor.$(OBJ)
  3448. jpegd_2=jddctmgr.$(OBJ) jdhuff.$(OBJ) jdmainct.$(OBJ) jdmarker.$(OBJ)
  3449. jpegd_3=jdmaster.$(OBJ) jdpostct.$(OBJ) jdsample.$(OBJ) jidctint.$(OBJ)
  3450.  
  3451. jpegd5.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpegd5) $(jpegd_1) $(jpegd_2) $(jpegd_3)
  3452.     $(SETMOD) jpegd5 $(jpegd5)
  3453.     $(ADDMOD) jpegd5 -include jpegc
  3454.     $(ADDMOD) jpegd5 -obj $(jpegd_1)
  3455.     $(ADDMOD) jpegd5 -obj $(jpegd_2)
  3456.     $(ADDMOD) jpegd5 -obj $(jpegd_3)
  3457.  
  3458. jpegd6.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpegd6) $(jpegd_1) $(jpegd_2) $(jpegd_3)
  3459.     $(SETMOD) jpegd6 $(jpegd6)
  3460.     $(ADDMOD) jpegd6 -include jpegc
  3461.     $(ADDMOD) jpegd6 -obj $(jpegd_1)
  3462.     $(ADDMOD) jpegd6 -obj $(jpegd_2)
  3463.     $(ADDMOD) jpegd6 -obj $(jpegd_3)
  3464.  
  3465. # jdapi.c is v5* only
  3466. jdapi.$(OBJ): $(JSRC)jdapi.c $(JDEP)
  3467.     $(CP_) $(JSRC)jdapi.c .
  3468.     $(CCCJ) jdapi.c
  3469.     $(RM_) jdapi.c
  3470.  
  3471. # jdapimin.c is new in v6
  3472. jdapimin.$(OBJ): $(JSRC)jdapimin.c $(JDEP)
  3473.     $(CP_) $(JSRC)jdapimin.c .
  3474.     $(CCCJ) jdapimin.c
  3475.     $(RM_) jdapimin.c
  3476.  
  3477. # jdapistd.c is new in v6
  3478. jdapistd.$(OBJ): $(JSRC)jdapistd.c $(JDEP)
  3479.     $(CP_) $(JSRC)jdapistd.c .
  3480.     $(CCCJ) jdapistd.c
  3481.     $(RM_) jdapistd.c
  3482.  
  3483. jdcoefct.$(OBJ): $(JSRC)jdcoefct.c $(JDEP)
  3484.     $(CP_) $(JSRC)jdcoefct.c .
  3485.     $(CCCJ) jdcoefct.c
  3486.     $(RM_) jdcoefct.c
  3487.  
  3488. jdcolor.$(OBJ): $(JSRC)jdcolor.c $(JDEP)
  3489.     $(CP_) $(JSRC)jdcolor.c .
  3490.     $(CCCJ) jdcolor.c
  3491.     $(RM_) jdcolor.c
  3492.  
  3493. jddctmgr.$(OBJ): $(JSRC)jddctmgr.c $(JDEP)
  3494.     $(CP_) $(JSRC)jddctmgr.c .
  3495.     $(CCCJ) jddctmgr.c
  3496.     $(RM_) jddctmgr.c
  3497.  
  3498. jdhuff.$(OBJ): $(JSRC)jdhuff.c $(JDEP)
  3499.     $(CP_) $(JSRC)jdhuff.c .
  3500.     $(CCCJ) jdhuff.c
  3501.     $(RM_) jdhuff.c
  3502.  
  3503. # jdinput.c is new in v6
  3504. jdinput.$(OBJ): $(JSRC)jdinput.c $(JDEP)
  3505.     $(CP_) $(JSRC)jdinput.c .
  3506.     $(CCCJ) jdinput.c
  3507.     $(RM_) jdinput.c
  3508.  
  3509. jdmainct.$(OBJ): $(JSRC)jdmainct.c $(JDEP)
  3510.     $(CP_) $(JSRC)jdmainct.c .
  3511.     $(CCCJ) jdmainct.c
  3512.     $(RM_) jdmainct.c
  3513.  
  3514. jdmarker.$(OBJ): $(JSRC)jdmarker.c $(JDEP)
  3515.     $(CP_) $(JSRC)jdmarker.c .
  3516.     $(CCCJ) jdmarker.c
  3517.     $(RM_) jdmarker.c
  3518.  
  3519. jdmaster.$(OBJ): $(JSRC)jdmaster.c $(JDEP)
  3520.     $(CP_) $(JSRC)jdmaster.c .
  3521.     $(CCCJ) jdmaster.c
  3522.     $(RM_) jdmaster.c
  3523.  
  3524. # jdphuff.c is new in v6
  3525. jdphuff.$(OBJ): $(JSRC)jdphuff.c $(JDEP)
  3526.     $(CP_) $(JSRC)jdphuff.c .
  3527.     $(CCCJ) jdphuff.c
  3528.     $(RM_) jdphuff.c
  3529.  
  3530. jdpostct.$(OBJ): $(JSRC)jdpostct.c $(JDEP)
  3531.     $(CP_) $(JSRC)jdpostct.c .
  3532.     $(CCCJ) jdpostct.c
  3533.     $(RM_) jdpostct.c
  3534.  
  3535. jdsample.$(OBJ): $(JSRC)jdsample.c $(JDEP)
  3536.     $(CP_) $(JSRC)jdsample.c .
  3537.     $(CCCJ) jdsample.c
  3538.     $(RM_) jdsample.c
  3539.  
  3540. jidctint.$(OBJ): $(JSRC)jidctint.c $(JDEP)
  3541.     $(CP_) $(JSRC)jidctint.c .
  3542.     $(CCCJ) jidctint.c
  3543.     $(RM_) jidctint.c
  3544. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3545. # This file is part of Aladdin Ghostscript.
  3546. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3547. # or distributor accepts any responsibility for the consequences of using it,
  3548. # or for whether it serves any particular purpose or works at all, unless he
  3549. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3550. # License (the "License") for full details.
  3551. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3552. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3553. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3554. # under certain conditions described in the License.  Among other things, the
  3555. # License requires that the copyright notice and this notice be preserved on
  3556. # all copies.
  3557.  
  3558. # makefile for PNG (Portable Network Graphics) code.
  3559.  
  3560. # This partial makefile compiles the png library for use in the Ghostscript
  3561. # PNG drivers.  You can get the source code for this library from:
  3562. #   ftp://swrinde.nde.swri.edu/pub/png/src/
  3563. # The makefile is known to work with the following library versions:
  3564. # 0.89, 0.90, 0.95, and 0.96.  NOTE: the archive for libpng 0.95 may
  3565. # be inconsistent: if you have compilation problems, use an older version.
  3566. # Please see Ghostscript's `make.txt' file for instructions about how to
  3567. # unpack these archives.
  3568. #
  3569. # The specification for the PNG file format is available from:
  3570. #   http://www.group42.com/png.htm
  3571. #   http://www.w3.org/pub/WWW/TR/WD-png
  3572.  
  3573. # Define the name of this makefile.
  3574. LIBPNG_MAK=libpng.mak
  3575.  
  3576. # PSRCDIR is defined in the platform-specific makefile, not here,
  3577. # as the directory where the PNG library sources are stored.
  3578. #PSRCDIR=libpng
  3579. # PVERSION is defined in the platform-specific makefile, not here,
  3580. # as the libpng version number ("89", "90", "95", or "96").
  3581. #PVERSION=96
  3582.  
  3583. PSRC=$(PSRCDIR)$(D)
  3584. # CCCP is defined in gs.mak.
  3585. #CCCP=$(CCC) -I$(PSRCDIR) -I$(ZSRCDIR)
  3586.  
  3587. # We keep all of the PNG code in a separate directory so as not to
  3588. # inadvertently mix it up with Aladdin Enterprises' own code.
  3589. PDEP=$(AK)
  3590.  
  3591. png_1=png.$(OBJ) pngmem.$(OBJ) pngerror.$(OBJ)
  3592. png_2=pngtrans.$(OBJ) pngwrite.$(OBJ) pngwtran.$(OBJ) pngwutil.$(OBJ)
  3593.  
  3594. # libpng modules
  3595.  
  3596. png.$(OBJ): $(PSRC)png.c $(PDEP)
  3597.     $(CCCP) $(PSRC)png.c
  3598.  
  3599. # version 0.89 uses pngwio.c
  3600. pngwio.$(OBJ): $(PSRC)pngwio.c $(PDEP)
  3601.     $(CCCP) $(PSRC)pngwio.c
  3602.  
  3603. pngmem.$(OBJ): $(PSRC)pngmem.c $(PDEP)
  3604.     $(CCCP) $(PSRC)pngmem.c
  3605.  
  3606. pngerror.$(OBJ): $(PSRC)pngerror.c $(PDEP)
  3607.     $(CCCP) $(PSRC)pngerror.c
  3608.  
  3609. pngtrans.$(OBJ): $(PSRC)pngtrans.c $(PDEP)
  3610.     $(CCCP) $(PSRC)pngtrans.c
  3611.  
  3612. pngwrite.$(OBJ): $(PSRC)pngwrite.c $(PDEP)
  3613.     $(CCCP) $(PSRC)pngwrite.c
  3614.  
  3615. pngwtran.$(OBJ): $(PSRC)pngwtran.c $(PDEP)
  3616.     $(CCCP) $(PSRC)pngwtran.c
  3617.  
  3618. pngwutil.$(OBJ): $(PSRC)pngwutil.c $(PDEP)
  3619.     $(CCCP) $(PSRC)pngwutil.c
  3620.  
  3621. # Define the version of libpng.dev that we are actually using.
  3622. libpng.dev: $(MAKEFILE) libpng_$(SHARE_LIBPNG).dev
  3623.     $(CP_) libpng_$(SHARE_LIBPNG).dev libpng.dev
  3624.  
  3625. # Define the shared version of libpng.
  3626. # Note that it requires libz, which must be searched *after* libpng.
  3627. libpng_1.dev: $(MAKEFILE) $(LIBPNG_MAK) $(ECHOGS_XE) zlibe.dev
  3628.     $(SETMOD) libpng_1 -lib $(LIBPNG_NAME)
  3629.     $(ADDMOD) libpng_1 -include zlibe
  3630.  
  3631. # Define the non-shared version of libpng.
  3632. libpng_0.dev: $(LIBPNG_MAK) $(ECHOGS_XE) $(png_1) $(png_2)\
  3633.  zlibe.dev libpng$(PVERSION).dev
  3634.     $(SETMOD) libpng_0 $(png_1)
  3635.     $(ADDMOD) libpng_0 $(png_2)
  3636.     $(ADDMOD) libpng_0 -include zlibe libpng$(PVERSION)
  3637.  
  3638. libpng89.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ)
  3639.     $(SETMOD) libpng89 pngwio.$(OBJ)
  3640.  
  3641. libpng90.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3642.     $(SETMOD) libpng90 pngwio.$(OBJ) -include crc32
  3643.  
  3644. libpng95.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3645.     $(SETMOD) libpng95 pngwio.$(OBJ) -include crc32
  3646.  
  3647. libpng96.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3648.     $(SETMOD) libpng96 pngwio.$(OBJ) -include crc32
  3649. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3650. # This file is part of Aladdin Ghostscript.
  3651. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3652. # or distributor accepts any responsibility for the consequences of using it,
  3653. # or for whether it serves any particular purpose or works at all, unless he
  3654. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3655. # License (the "License") for full details.
  3656. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3657. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3658. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3659. # under certain conditions described in the License.  Among other things, the
  3660. # License requires that the copyright notice and this notice be preserved on
  3661. # all copies.
  3662.  
  3663. # makefile for zlib library code.
  3664.  
  3665. # This partial makefile compiles the zlib library for use in Ghostscript.
  3666. # You can get the source code for this library from:
  3667. #   ftp://ftp.uu.net/pub/archiving/zip/zlib/zlib104.zip   (zlib 1.0.4)
  3668. #        or zlib-1.0.4.tar.gz
  3669. # Please see Ghostscript's `make.txt' file for instructions about how to
  3670. # unpack these archives.
  3671.  
  3672. # Define the name of this makefile.
  3673. ZLIB_MAK=zlib.mak
  3674.  
  3675. # ZSRCDIR is defined in the platform-specific makefile, not here,
  3676. # as the directory where the zlib sources are stored.
  3677. #ZSRCDIR=zlib
  3678. ZSRC=$(ZSRCDIR)$(D)
  3679. # We would like to define
  3680. #CCCZ=$(CCC) -I$(ZSRCDIR) -Dverbose=-1
  3681. # but the Watcom C compiler has strange undocumented restrictions on what can
  3682. # follow a -D=, and it doesn't allow negative numbers.  Instead, we define
  3683. # (in gs.mak):
  3684. #CCCZ=$(CCC) -I. -I$(ZSRCDIR)
  3685. # and handle the definition of verbose in a different, more awkward way.
  3686.  
  3687. # We keep all of the zlib code in a separate directory so as not to
  3688. # inadvertently mix it up with Aladdin Enterprises' own code.
  3689. ZDEP=$(AK)
  3690.  
  3691. # Contrary to what some portability bigots assert as fact, C compilers are
  3692. # not consistent about where they start searching for #included files:
  3693. # some always start by looking in the same directory as the .c file being
  3694. # compiled, before using the search path specified with -I on the command
  3695. # line, while others do not do this.  For this reason, we must explicitly
  3696. # copy and then delete all the .c files, because they need to obtain our
  3697. # modified version of zutil.h.  We must also copy all header files that
  3698. # reference zutil.h directly or indirectly.
  3699.  
  3700. # Code common to compression and decompression.
  3701.  
  3702. zlibc_=zutil.$(OBJ)
  3703. zlibc.dev: $(ZLIB_MAK) $(ECHOGS_XE) $(zlibc_)
  3704.     $(SETMOD) zlibc $(zlibc_)
  3705.  
  3706. zutil.h: $(ZSRC)zutil.h $(ECHOGS_XE)
  3707.     $(EXP)echogs -w zutil.h -x 23 define verbose -s - -1
  3708.     $(EXP)echogs -a zutil.h -+R $(ZSRC)zutil.h
  3709.  
  3710. zutil.$(OBJ): $(ZSRC)zutil.c $(ZDEP) zutil.h
  3711.     $(CP_) $(ZSRC)zutil.c .
  3712.     $(CCCZ) zutil.c
  3713.     $(RM_) zutil.c
  3714.  
  3715. # Encoding (compression) code.
  3716.  
  3717. deflate.h: $(ZSRC)deflate.h zutil.h
  3718.     $(CP_) $(ZSRC)deflate.h .
  3719.  
  3720. zlibe.dev: $(MAKEFILE) zlibe_$(SHARE_ZLIB).dev
  3721.     $(CP_) zlibe_$(SHARE_ZLIB).dev zlibe.dev
  3722.  
  3723. zlibe_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3724.     $(SETMOD) zlibe_1 -lib $(ZLIB_NAME)
  3725.  
  3726. zlibe_=adler32.$(OBJ) deflate.$(OBJ) trees.$(OBJ)
  3727. zlibe_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) zlibc.dev $(zlibe_)
  3728.     $(SETMOD) zlibe_0 $(zlibe_)
  3729.     $(ADDMOD) zlibe_0 -include zlibc
  3730.  
  3731. adler32.$(OBJ): $(ZSRC)adler32.c $(ZDEP)
  3732.     $(CP_) $(ZSRC)adler32.c .
  3733.     $(CCCZ) adler32.c
  3734.     $(RM_) adler32.c
  3735.  
  3736. deflate.$(OBJ): $(ZSRC)deflate.c $(ZDEP) deflate.h
  3737.     $(CP_) $(ZSRC)deflate.c .
  3738.     $(CCCZ) deflate.c
  3739.     $(RM_) deflate.c
  3740.  
  3741. trees.$(OBJ): $(ZSRC)trees.c $(ZDEP) deflate.h
  3742.     $(CP_) $(ZSRC)trees.c .
  3743.     $(CCCZ) trees.c
  3744.     $(RM_) trees.c
  3745.  
  3746. # The zlib filters per se don't need crc32, but libpng versions starting
  3747. # with 0.90 do.
  3748.  
  3749. crc32.dev: $(MAKEFILE) crc32_$(SHARE_ZLIB).dev
  3750.     $(CP_) crc32_$(SHARE_ZLIB).dev crc32.dev
  3751.  
  3752. crc32_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3753.     $(SETMOD) crc32_1 -lib $(ZLIB_NAME)
  3754.  
  3755. crc32_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) crc32.$(OBJ)
  3756.     $(SETMOD) crc32_0 crc32.$(OBJ)
  3757.  
  3758. crc32.$(OBJ): $(ZSRC)crc32.c $(ZDEP) deflate.h
  3759.     $(CP_) $(ZSRC)crc32.c .
  3760.     $(CCCZ) crc32.c
  3761.     $(RM_) crc32.c
  3762.  
  3763. # Decoding (decompression) code.
  3764.  
  3765. zlibd.dev: $(MAKEFILE) zlibd_$(SHARE_ZLIB).dev
  3766.     $(CP_) zlibd_$(SHARE_ZLIB).dev zlibd.dev
  3767.  
  3768. zlibd_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3769.     $(SETMOD) zlibd_1 -lib $(ZLIB_NAME)
  3770.  
  3771. zlibd1_=infblock.$(OBJ) infcodes.$(OBJ) inffast.$(OBJ)
  3772. zlibd2_=inflate.$(OBJ) inftrees.$(OBJ) infutil.$(OBJ)
  3773. zlibd_ = $(zlibd1_) $(zlibd2_)
  3774. zlibd_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) zlibc.dev $(zlibd_)
  3775.     $(SETMOD) zlibd_0 $(zlibd1_)
  3776.     $(ADDMOD) zlibd_0 -obj $(zlibd2_)
  3777.     $(ADDMOD) zlibd_0 -include zlibc
  3778.  
  3779. infblock.$(OBJ): $(ZSRC)infblock.c $(ZDEP) zutil.h
  3780.     $(CP_) $(ZSRC)infblock.c .
  3781.     $(CCCZ) infblock.c
  3782.     $(RM_) infblock.c
  3783.  
  3784. infcodes.$(OBJ): $(ZSRC)infcodes.c $(ZDEP) zutil.h
  3785.     $(CP_) $(ZSRC)infcodes.c .
  3786.     $(CCCZ) infcodes.c
  3787.     $(RM_) infcodes.c
  3788.  
  3789. inffast.$(OBJ): $(ZSRC)inffast.c $(ZDEP) zutil.h
  3790.     $(CP_) $(ZSRC)inffast.c .
  3791.     $(CCCZ) inffast.c
  3792.     $(RM_) inffast.c
  3793.  
  3794. inflate.$(OBJ): $(ZSRC)inflate.c $(ZDEP) zutil.h
  3795.     $(CP_) $(ZSRC)inflate.c .
  3796.     $(CCCZ) inflate.c
  3797.     $(RM_) inflate.c
  3798.  
  3799. inftrees.$(OBJ): $(ZSRC)inftrees.c $(ZDEP) zutil.h
  3800.     $(CP_) $(ZSRC)inftrees.c .
  3801.     $(CCCZ) inftrees.c
  3802.     $(RM_) inftrees.c
  3803.  
  3804. infutil.$(OBJ): $(ZSRC)infutil.c $(ZDEP) zutil.h
  3805.     $(CP_) $(ZSRC)infutil.c .
  3806.     $(CCCZ) infutil.c
  3807.     $(RM_) infutil.c
  3808. #    Copyright (C) 1989, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3809. # This file is part of Aladdin Ghostscript.
  3810. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3811. # or distributor accepts any responsibility for the consequences of using it,
  3812. # or for whether it serves any particular purpose or works at all, unless he
  3813. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3814. # License (the "License") for full details.
  3815. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3816. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3817. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3818. # under certain conditions described in the License.  Among other things, the
  3819. # License requires that the copyright notice and this notice be preserved on
  3820. # all copies.
  3821.  
  3822. # makefile for device drivers.
  3823.  
  3824. # Define the name of this makefile.
  3825. DEVS_MAK=devs.mak
  3826.  
  3827. ###### --------------------------- Catalog -------------------------- ######
  3828.  
  3829. # It is possible to build configurations with an arbitrary collection of
  3830. # device drivers, although some drivers are supported only on a subset
  3831. # of the target platforms.  The currently available drivers are:
  3832.  
  3833. # MS-DOS displays (note: not usable with Desqview/X):
  3834. #   MS-DOS EGA and VGA:
  3835. #    ega    EGA (640x350, 16-color)
  3836. #    vga    VGA (640x480, 16-color)
  3837. #   MS-DOS SuperVGA:
  3838. # *    ali    SuperVGA using Avance Logic Inc. chipset, 256-color modes
  3839. # *    atiw    ATI Wonder SuperVGA, 256-color modes
  3840. # *    s3vga    SuperVGA using S3 86C911 chip (e.g., Diamond Stealth board)
  3841. #    svga16    Generic SuperVGA in 800x600, 16-color mode
  3842. # *    tseng    SuperVGA using Tseng Labs ET3000/4000 chips, 256-color modes
  3843. # *    tvga    SuperVGA using Trident chipset, 256-color modes
  3844. #   ****** NOTE: The vesa device does not work with the Watcom (32-bit MS-DOS)
  3845. #   ****** compiler or executable.
  3846. #    vesa    SuperVGA with VESA standard API driver
  3847. #   MS-DOS other:
  3848. #    bgi    Borland Graphics Interface (CGA)  [MS-DOS only]
  3849. # *    herc    Hercules Graphics display   [MS-DOS only]
  3850. # *    pe    Private Eye display
  3851. # Other displays:
  3852. #   MS Windows:
  3853. #    mswindll  Microsoft Windows 3.1 DLL  [MS Windows only]
  3854. #    mswinprn  Microsoft Windows 3.0, 3.1 DDB printer  [MS Windows only]
  3855. #    mswinpr2  Microsoft Windows 3.0, 3.1 DIB printer  [MS Windows only]
  3856. #   OS/2:
  3857. # *    os2pm    OS/2 Presentation Manager   [OS/2 only]
  3858. # *    os2dll    OS/2 DLL bitmap             [OS/2 only]
  3859. # *    os2prn    OS/2 printer                [OS/2 only]
  3860. #   Unix and VMS:
  3861. #   ****** NOTE: For direct frame buffer addressing under SCO Unix or Xenix,
  3862. #   ****** edit the definition of EGAVGA below.
  3863. # *    att3b1    AT&T 3b1/Unixpc monochrome display   [3b1 only]
  3864. # *    lvga256  Linux vgalib, 256-color VGA modes  [Linux only]
  3865. # *    sonyfb    Sony Microsystems monochrome display   [Sony only]
  3866. # *    sunview  SunView window system   [SunOS only]
  3867. # +    vgalib    Linux PC with VGALIB   [Linux only]
  3868. #    x11    X Windows version 11, release >=4   [Unix and VMS only]
  3869. #    x11alpha  X Windows masquerading as a device with alpha capability
  3870. #    x11cmyk  X Windows masquerading as a 1-bit-per-plane CMYK device
  3871. #    x11gray2  X Windows as a 2-bit gray-scale device
  3872. #    x11mono  X Windows masquerading as a black-and-white device
  3873. #   Platform-independent:
  3874. # *    sxlcrt    CRT sixels, e.g. for VT240-like terminals
  3875. # Printers:
  3876. # *    ap3250    Epson AP3250 printer
  3877. # *    appledmp  Apple Dot Matrix Printer (should also work with Imagewriter)
  3878. #    bj10e    Canon BubbleJet BJ10e
  3879. # *    bj200    Canon BubbleJet BJ200
  3880. # *    bjc600   Canon Color BubbleJet BJC-600, BJC-4000 and BJC-70
  3881. #               also good for Apple printers like the StyleWriter 2x00
  3882. # *    bjc800   Canon Color BubbleJet BJC-800
  3883. # *     ccr     CalComp Raster format
  3884. # *    cdeskjet  H-P DeskJet 500C with 1 bit/pixel color
  3885. # *    cdjcolor  H-P DeskJet 500C with 24 bit/pixel color and
  3886. #        high-quality color (Floyd-Steinberg) dithering;
  3887. #        also good for DeskJet 540C and Citizen Projet IIc (-r200x300)
  3888. # *    cdjmono  H-P DeskJet 500C printing black only;
  3889. #        also good for DeskJet 510, 520, and 540C (black only)
  3890. # *    cdj500    H-P DeskJet 500C (same as cdjcolor)
  3891. # *    cdj550    H-P DeskJet 550C/560C
  3892. # *    cp50    Mitsubishi CP50 color printer
  3893. # *    declj250  alternate DEC LJ250 driver
  3894. # +    deskjet  H-P DeskJet and DeskJet Plus
  3895. #    djet500  H-P DeskJet 500
  3896. # *    djet500c  H-P DeskJet 500C alternate driver
  3897. #        (does not work on 550C or 560C)
  3898. # *    dnj650c  H-P DesignJet 650C
  3899. #    epson    Epson-compatible dot matrix printers (9- or 24-pin)
  3900. # *    eps9mid  Epson-compatible 9-pin, interleaved lines
  3901. #        (intermediate resolution)
  3902. # *    eps9high  Epson-compatible 9-pin, interleaved lines
  3903. #        (triple resolution)
  3904. # *    epsonc    Epson LQ-2550 and Fujitsu 3400/2400/1200 color printers
  3905. # *    ibmpro  IBM 9-pin Proprinter
  3906. # *    imagen    Imagen ImPress printers
  3907. # *    iwhi    Apple Imagewriter in high-resolution mode
  3908. # *    iwlo    Apple Imagewriter in low-resolution mode
  3909. # *    iwlq    Apple Imagewriter LQ in 320 x 216 dpi mode
  3910. # *    jetp3852  IBM Jetprinter ink-jet color printer (Model #3852)
  3911. # +    laserjet  H-P LaserJet
  3912. # *    la50    DEC LA50 printer
  3913. # *    la70    DEC LA70 printer
  3914. # *    la70t    DEC LA70 printer with low-resolution text enhancement
  3915. # *    la75    DEC LA75 printer
  3916. # *    la75plus DEC LA75plus printer
  3917. # *    lbp8    Canon LBP-8II laser printer
  3918. # *    lips3    Canon LIPS III laser printer in English (CaPSL) mode
  3919. # *    ln03    DEC LN03 printer
  3920. # *    lj250    DEC LJ250 Companion color printer
  3921. # +    ljet2p    H-P LaserJet IId/IIp/III* with TIFF compression
  3922. # +    ljet3    H-P LaserJet III* with Delta Row compression
  3923. # +    ljet3d    H-P LaserJet IIID with duplex capability
  3924. # +    ljet4    H-P LaserJet 4 (defaults to 600 dpi)
  3925. # +    lj4dith  H-P LaserJet 4 with Floyd-Steinberg dithering
  3926. # +    ljetplus  H-P LaserJet Plus
  3927. #    lj5mono  H-P LaserJet 5 & 6 family (PCL XL), bitmap:
  3928. #        see below for restrictions & advice
  3929. #    lj5gray  H-P LaserJet 5 & 6 family, gray-scale bitmap;
  3930. #        see below for restrictions & advice
  3931. # *    lp2563    H-P 2563B line printer
  3932. # *    lp8000    Epson LP-8000 laser printer
  3933. # *     lq850   Epson LQ850 printer at 360 x 360 DPI resolution;
  3934. #               also good for Canon BJ300 with LQ850 emulation
  3935. # *    m8510    C.Itoh M8510 printer
  3936. # *    necp6    NEC P6/P6+/P60 printers at 360 x 360 DPI resolution
  3937. # *    nwp533  Sony Microsystems NWP533 laser printer   [Sony only]
  3938. # *    oce9050  OCE 9050 printer
  3939. # *    oki182    Okidata MicroLine 182
  3940. # *    okiibm    Okidata MicroLine IBM-compatible printers
  3941. # *    paintjet  alternate H-P PaintJet color printer
  3942. # *    pj    H-P PaintJet XL driver 
  3943. # *    pjetxl    alternate H-P PaintJet XL driver
  3944. # *    pjxl    H-P PaintJet XL color printer
  3945. # *    pjxl300  H-P PaintJet XL300 color printer;
  3946. #        also good for PaintJet 1200C
  3947. #    (pxlmono) H-P black-and-white PCL XL printers (LaserJet 5 and 6 family)
  3948. #    (pxlcolor) H-P color PCL XL printers (none available yet)
  3949. # *    r4081    Ricoh 4081 laser printer
  3950. # *    sj48    StarJet 48 inkjet printer
  3951. # *    sparc    SPARCprinter
  3952. # *    st800    Epson Stylus 800 printer
  3953. # *    stcolor    Epson Stylus Color
  3954. # *    t4693d2  Tektronix 4693d color printer, 2 bits per R/G/B component
  3955. # *    t4693d4  Tektronix 4693d color printer, 4 bits per R/G/B component
  3956. # *    t4693d8  Tektronix 4693d color printer, 8 bits per R/G/B component
  3957. # *    tek4696  Tektronix 4695/4696 inkjet plotter
  3958. # *    uniprint  Unified printer driver -- Configurable Color ESC/P-,
  3959. #        ESC/P2-, HP-RTL/PCL mono/color driver
  3960. # *    xes    Xerox XES printers (2700, 3700, 4045, etc.)
  3961. # Fax systems:
  3962. # *    dfaxhigh  DigiBoard, Inc.'s DigiFAX software format (high resolution)
  3963. # *    dfaxlow  DigiFAX low (normal) resolution
  3964. # Fax file format:
  3965. #   ****** NOTE: all of these drivers adjust the page size to match
  3966. #   ****** one of the three CCITT standard sizes (U.S. letter with A4 width,
  3967. #   ****** A4, or B4).
  3968. #    faxg3    Group 3 fax, with EOLs but no header or EOD
  3969. #    faxg32d  Group 3 2-D fax, with EOLs but no header or EOD
  3970. #    faxg4    Group 4 fax, with EOLs but no header or EOD
  3971. #    tiffcrle  TIFF "CCITT RLE 1-dim" (= Group 3 fax with no EOLs)
  3972. #    tiffg3    TIFF Group 3 fax (with EOLs)
  3973. #    tiffg32d  TIFF Group 3 2-D fax
  3974. #    tiffg4    TIFF Group 4 fax
  3975. # High-level file formats:
  3976. #    epswrite  EPS output (like PostScript Distillery)
  3977. #    pdfwrite  PDF output (like Adobe Acrobat Distiller)
  3978. #    pswrite  PostScript output (like PostScript Distillery)
  3979. #    pxlmono  Black-and-white PCL XL
  3980. #    pxlcolor  Color PCL XL
  3981. # Other raster file formats and devices:
  3982. #    bit    Plain bits, monochrome
  3983. #    bitrgb    Plain bits, RGB
  3984. #    bitcmyk  Plain bits, CMYK
  3985. #    bmpmono    Monochrome MS Windows .BMP file format
  3986. #    bmp16    4-bit (EGA/VGA) .BMP file format
  3987. #    bmp256    8-bit (256-color) .BMP file format
  3988. #    bmp16m    24-bit .BMP file format
  3989. #    cgmmono  Monochrome (black-and-white) CGM -- LOW LEVEL OUTPUT ONLY
  3990. #    cgm8    8-bit (256-color) CGM -- DITTO
  3991. #    cgm24    24-bit color CGM -- DITTO
  3992. # *    cif    CIF file format for VLSI
  3993. #    jpeg    JPEG format, RGB output
  3994. #    jpeggray  JPEG format, gray output
  3995. #    miff24    ImageMagick MIFF format, 24-bit direct color, RLE compressed
  3996. # *    mgrmono  1-bit monochrome MGR devices
  3997. # *    mgrgray2  2-bit gray scale MGR devices
  3998. # *    mgrgray4  4-bit gray scale MGR devices
  3999. # *    mgrgray8  8-bit gray scale MGR devices
  4000. # *    mgr4    4-bit (VGA) color MGR devices
  4001. # *    mgr8    8-bit color MGR devices
  4002. #    pcxmono    PCX file format, monochrome (1-bit black and white)
  4003. #    pcxgray    PCX file format, 8-bit gray scale
  4004. #    pcx16    PCX file format, 4-bit planar (EGA/VGA) color
  4005. #    pcx256    PCX file format, 8-bit chunky color
  4006. #    pcx24b    PCX file format, 24-bit color (3 8-bit planes)
  4007. #    pcxcmyk PCX file format, 4-bit chunky CMYK color
  4008. #    pbm    Portable Bitmap (plain format)
  4009. #    pbmraw    Portable Bitmap (raw format)
  4010. #    pgm    Portable Graymap (plain format)
  4011. #    pgmraw    Portable Graymap (raw format)
  4012. #    pgnm    Portable Graymap (plain format), optimizing to PBM if possible
  4013. #    pgnmraw    Portable Graymap (raw format), optimizing to PBM if possible
  4014. #    pnm    Portable Pixmap (plain format) (RGB), optimizing to PGM or PBM
  4015. #         if possible
  4016. #    pnmraw    Portable Pixmap (raw format) (RGB), optimizing to PGM or PBM
  4017. #         if possible
  4018. #    ppm    Portable Pixmap (plain format) (RGB)
  4019. #    ppmraw    Portable Pixmap (raw format) (RGB)
  4020. #    pkm    Portable inKmap (plain format) (4-bit CMYK => RGB)
  4021. #    pkmraw    Portable inKmap (raw format) (4-bit CMYK => RGB)
  4022. #    pngmono    Monochrome Portable Network Graphics (PNG)
  4023. #    pnggray    8-bit gray Portable Network Graphics (PNG)
  4024. #    png16    4-bit color Portable Network Graphics (PNG)
  4025. #    png256    8-bit color Portable Network Graphics (PNG)
  4026. #    png16m    24-bit color Portable Network Graphics (PNG)
  4027. #    psmono    PostScript (Level 1) monochrome image
  4028. #    psgray    PostScript (Level 1) 8-bit gray image
  4029. #    sgirgb    SGI RGB pixmap format
  4030. #    tiff12nc  TIFF 12-bit RGB, no compression
  4031. #    tiff24nc  TIFF 24-bit RGB, no compression (NeXT standard format)
  4032. #    tifflzw  TIFF LZW (tag = 5) (monochrome)
  4033. #    tiffpack  TIFF PackBits (tag = 32773) (monochrome)
  4034.  
  4035. # User-contributed drivers marked with * require hardware or software
  4036. # that is not available to Aladdin Enterprises.  Please contact the
  4037. # original contributors, not Aladdin Enterprises, if you have questions.
  4038. # Contact information appears in the driver entry below.
  4039. #
  4040. # Drivers marked with a + are maintained by Aladdin Enterprises with
  4041. # the assistance of users, since Aladdin Enterprises doesn't have access to
  4042. # the hardware for these either.
  4043.  
  4044. # If you add drivers, it would be nice if you kept each list
  4045. # in alphabetical order.
  4046.  
  4047. ###### ----------------------- End of catalog ----------------------- ######
  4048.  
  4049. # As noted in gs.mak, DEVICE_DEVS and DEVICE_DEVS1..15 select the devices
  4050. # that should be included in a given configuration.  By convention, these
  4051. # are used as follows.  Each of these must be limited to about 10 devices
  4052. # so as not to overflow the 120 character limit on MS-DOS command lines.
  4053. #    DEVICE_DEVS - the default device, and any display devices.
  4054. #    DEVICE_DEVS1 - additional display devices if needed.
  4055. #    DEVICE_DEVS2 - dot matrix printers.
  4056. #    DEVICE_DEVS3 - H-P monochrome printers.
  4057. #    DEVICE_DEVS4 - H-P color printers.
  4058. #    DEVICE_DEVS5 - additional H-P printers if needed.
  4059. #    DEVICE_DEVS6 - other ink-jet and laser printers.
  4060. #    DEVICE_DEVS7 - fax file formats.
  4061. #    DEVICE_DEVS8 - PCX file formats.
  4062. #    DEVICE_DEVS9 - PBM/PGM/PPM file formats.
  4063. #    DEVICE_DEVS10 - black-and-white TIFF file formats.
  4064. #    DEVICE_DEVS11 - BMP and color TIFF file formats.
  4065. #    DEVICE_DEVS12 - PostScript image and 'bit' file formats.
  4066. #    DEVICE_DEVS13 - PNG file formats.
  4067. #    DEVICE_DEVS14 - CGM, JPEG, and MIFF file formats.
  4068. #    DEVICE_DEVS15 - high-level (PostScript and PDF) file formats.
  4069. # Feel free to disregard this convention if it gets in your way.
  4070.  
  4071. # If you want to add a new device driver, the examples below should be
  4072. # enough of a guide to the correct form for the makefile rules.
  4073. # Note that all drivers other than displays must include page.dev in their
  4074. # dependencies and use $(SETPDEV) rather than $(SETDEV) in their rule bodies.
  4075.  
  4076. # All device drivers depend on the following:
  4077. GDEV=$(AK) $(ECHOGS_XE) $(gserrors_h) $(gx_h) $(gxdevice_h)
  4078.  
  4079. # "Printer" drivers depend on the following:
  4080. PDEVH=$(AK) $(gdevprn_h)
  4081.  
  4082. # Define the header files for device drivers.  Every header file used by
  4083. # more than one device driver family must be listed here.
  4084. gdev8bcm_h=gdev8bcm.h
  4085. gdevpccm_h=gdevpccm.h
  4086. gdevpcfb_h=gdevpcfb.h $(dos__h)
  4087. gdevpcl_h=gdevpcl.h
  4088. gdevsvga_h=gdevsvga.h
  4089. gdevx_h=gdevx.h
  4090.  
  4091. ###### ----------------------- Device support ----------------------- ######
  4092.  
  4093. # Provide a mapping between StandardEncoding and ISOLatin1Encoding.
  4094. gdevemap.$(OBJ): gdevemap.c $(AK) $(std_h)
  4095.  
  4096. # Implement dynamic color management for 8-bit mapped color displays.
  4097. gdev8bcm.$(OBJ): gdev8bcm.c $(AK) \
  4098.   $(gx_h) $(gxdevice_h) $(gdev8bcm_h)
  4099.  
  4100. ###### ------------------- MS-DOS display devices ------------------- ######
  4101.  
  4102. # There are really only three drivers: an EGA/VGA driver (4 bit-planes,
  4103. # plane-addressed), a SuperVGA driver (8 bit-planes, byte addressed),
  4104. # and a special driver for the S3 chip.
  4105.  
  4106. # PC display color mapping
  4107. gdevpccm.$(OBJ): gdevpccm.c $(AK) \
  4108.   $(gx_h) $(gsmatrix_h) $(gxdevice_h) $(gdevpccm_h)
  4109.  
  4110. ### ----------------------- EGA and VGA displays ----------------------- ###
  4111.  
  4112. # The shared MS-DOS makefile defines PCFBASM as either gdevegaa.$(OBJ)
  4113. # or an empty string.
  4114.  
  4115. gdevegaa.$(OBJ): gdevegaa.asm
  4116.  
  4117. # NOTE: for direct frame buffer addressing under SCO Unix or Xenix,
  4118. # change gdevevga to gdevsco in the following line.  Also, since
  4119. # SCO's /bin/as does not support the "out" instructions, you must build
  4120. # the gnu assembler and have it on your path as "as".
  4121. EGAVGA=gdevevga.$(OBJ) gdevpcfb.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4122. #EGAVGA=gdevsco.$(OBJ) gdevpcfb.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4123.  
  4124. gdevevga.$(OBJ): gdevevga.c $(GDEV) $(memory__h) $(gdevpcfb_h)
  4125.     $(CCD) gdevevga.c
  4126.  
  4127. gdevsco.$(OBJ): gdevsco.c $(GDEV) $(memory__h) $(gdevpcfb_h)
  4128.  
  4129. # Common code for MS-DOS and SCO.
  4130. gdevpcfb.$(OBJ): gdevpcfb.c $(GDEV) $(memory__h) $(gconfigv_h)\
  4131.  $(gdevpccm_h) $(gdevpcfb_h) $(gsparam_h)
  4132.     $(CCD) gdevpcfb.c
  4133.  
  4134. # The EGA/VGA family includes EGA and VGA.  Many SuperVGAs in 800x600,
  4135. # 16-color mode can share the same code; see the next section below.
  4136.  
  4137. ega.dev: $(EGAVGA)
  4138.     $(SETDEV) ega $(EGAVGA)
  4139.  
  4140. vga.dev: $(EGAVGA)
  4141.     $(SETDEV) vga $(EGAVGA)
  4142.  
  4143. ### ------------------------- SuperVGA displays ------------------------ ###
  4144.  
  4145. # SuperVGA displays in 16-color, 800x600 mode are really just slightly
  4146. # glorified VGA's, so we can handle them all with a single driver.
  4147. # The way to select them on the command line is with
  4148. #    -sDEVICE=svga16 -dDisplayMode=NNN
  4149. # where NNN is the display mode in decimal.  See use.txt for the modes
  4150. # for some popular display chipsets.
  4151.  
  4152. svga16.dev: $(EGAVGA)
  4153.     $(SETDEV) svga16 $(EGAVGA)
  4154.  
  4155. # More capable SuperVGAs have a wide variety of slightly differing
  4156. # interfaces, so we need a separate driver for each one.
  4157.  
  4158. SVGA=gdevsvga.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4159.  
  4160. gdevsvga.$(OBJ): gdevsvga.c $(GDEV) $(memory__h) $(gconfigv_h)\
  4161.  $(gsparam_h) $(gxarith_h) $(gdevpccm_h) $(gdevpcfb_h) $(gdevsvga_h)
  4162.     $(CCD) gdevsvga.c
  4163.  
  4164. # The SuperVGA family includes: Avance Logic Inc., ATI Wonder, S3,
  4165. # Trident, Tseng ET3000/4000, and VESA.
  4166.  
  4167. ali.dev: $(SVGA)
  4168.     $(SETDEV) ali $(SVGA)
  4169.  
  4170. atiw.dev: $(SVGA)
  4171.     $(SETDEV) atiw $(SVGA)
  4172.  
  4173. tseng.dev: $(SVGA)
  4174.     $(SETDEV) tseng $(SVGA)
  4175.  
  4176. tvga.dev: $(SVGA)
  4177.     $(SETDEV) tvga $(SVGA)
  4178.  
  4179. vesa.dev: $(SVGA)
  4180.     $(SETDEV) vesa $(SVGA)
  4181.  
  4182. # The S3 driver doesn't share much code with the others.
  4183.  
  4184. s3vga_=gdevs3ga.$(OBJ) gdevsvga.$(OBJ) gdevpccm.$(OBJ)
  4185. s3vga.dev: $(SVGA) $(s3vga_)
  4186.     $(SETDEV) s3vga $(SVGA)
  4187.     $(ADDMOD) s3vga -obj $(s3vga_)
  4188.  
  4189. gdevs3ga.$(OBJ): gdevs3ga.c $(GDEV) $(gdevpcfb_h) $(gdevsvga_h)
  4190.     $(CCD) gdevs3ga.c
  4191.  
  4192. ### ------------ The BGI (Borland Graphics Interface) device ----------- ###
  4193.  
  4194. cgaf.$(OBJ): $(BGIDIR)\cga.bgi
  4195.     $(BGIDIR)\bgiobj /F $(BGIDIR)\cga
  4196.  
  4197. egavgaf.$(OBJ): $(BGIDIR)\egavga.bgi
  4198.     $(BGIDIR)\bgiobj /F $(BGIDIR)\egavga
  4199.  
  4200. # Include egavgaf.$(OBJ) for debugging only.
  4201. bgi_=gdevbgi.$(OBJ) cgaf.$(OBJ)
  4202. bgi.dev: $(bgi_)
  4203.     $(SETDEV) bgi $(bgi_)
  4204.     $(ADDMOD) bgi -lib $(LIBDIR)\graphics
  4205.  
  4206. gdevbgi.$(OBJ): gdevbgi.c $(GDEV) $(MAKEFILE) $(gxxfont_h)
  4207.     $(CCC) -DBGI_LIB="$(BGIDIRSTR)" gdevbgi.c
  4208.  
  4209. ### ------------------- The Hercules Graphics display ------------------- ###
  4210.  
  4211. herc_=gdevherc.$(OBJ)
  4212. herc.dev: $(herc_)
  4213.     $(SETDEV) herc $(herc_)
  4214.  
  4215. gdevherc.$(OBJ): gdevherc.c $(GDEV) $(dos__h) $(gsmatrix_h) $(gxbitmap_h)
  4216.     $(CCC) gdevherc.c
  4217.  
  4218. ### ---------------------- The Private Eye display ---------------------- ###
  4219. ### Note: this driver was contributed by a user:                          ###
  4220. ###   please contact narf@media-lab.media.mit.edu if you have questions.  ###
  4221.  
  4222. pe_=gdevpe.$(OBJ)
  4223. pe.dev: $(pe_)
  4224.     $(SETDEV) pe $(pe_)
  4225.  
  4226. gdevpe.$(OBJ): gdevpe.c $(GDEV) $(memory__h)
  4227.  
  4228. ###### ----------------------- Other displays ------------------------ ######
  4229. ### ---------------- Amiga display/printer/file devices ---------------- ###
  4230. ### Note: this driver was contributed by a user: please contact          ###
  4231. ###       Olaf Barthel (olsen@sourcery.han.de) if you have questions.    ###
  4232. ###       He would also like to hear from anyone using the driver.       ###
  4233. ### Please consult the source code for additional documentation.         ###
  4234.  
  4235. amiga_=gdevamiga.$(OBJ)
  4236.  
  4237. amiga.dev: $(amiga_)
  4238.     $(SETDEV) amiga $(amiga_)
  4239.  
  4240. amiga_low.dev: $(amiga_)
  4241.     $(SETDEV) amiga_low $(amiga_)
  4242.  
  4243. amiga_high.dev: $(amiga_)
  4244.     $(SETDEV) amiga_high $(amiga_)
  4245.  
  4246. amiga_super.dev: $(amiga_)
  4247.     $(SETDEV) amiga_super $(amiga_)
  4248.  
  4249. amiga_a2024.dev: $(amiga_)
  4250.     $(SETDEV) amiga_a2024 $(amiga_)
  4251.  
  4252. amiga_picassoii.dev: $(amiga_)
  4253.     $(SETDEV) amiga_picassoii $(amiga_)
  4254.  
  4255. amiga_custom.dev: $(amiga_)
  4256.     $(SETDEV) amiga_custom $(amiga_)
  4257.  
  4258. amiga_printer.dev: $(amiga_)
  4259.     $(SETDEV) amiga_printer $(amiga_)
  4260.  
  4261. amiga_ilbm.dev: $(amiga_)
  4262.     $(SETDEV) amiga_ilbm $(amiga_)
  4263.  
  4264. gdevamiga.$(OBJ): $(srcdir)/gdevamiga.c
  4265.  
  4266.  
  4267. ### -------------------- The MS-Windows 3.n DLL ------------------------- ###
  4268.  
  4269. gsdll_h=gsdll.h
  4270.  
  4271. gdevmswn_h=gdevmswn.h $(GDEV)\
  4272.  $(dos__h) $(memory__h) $(string__h) $(windows__h)\
  4273.  gp_mswin.h
  4274.  
  4275. gdevmswn.$(OBJ): gdevmswn.c $(gdevmswn_h) $(gp_h) $(gpcheck_h) \
  4276.  $(gsdll_h) $(gsparam_h) $(gdevpccm_h)
  4277.  
  4278. gdevmsxf.$(OBJ): gdevmsxf.c $(ctype__h) $(math__h) $(memory__h) $(string__h)\
  4279.  $(gdevmswn_h) $(gsstruct_h) $(gsutil_h) $(gxxfont_h)
  4280.  
  4281. # An implementation using a DIB filled by an image device.
  4282. gdevwdib.$(OBJ): gdevwdib.c $(gdevmswn_h) $(gsdll_h) $(gxdevmem_h)
  4283.  
  4284. mswindll_=gdevmswn.$(OBJ) gdevmsxf.$(OBJ) gdevwdib.$(OBJ) \
  4285.   gdevemap.$(OBJ) gdevpccm.$(OBJ)
  4286. mswindll.dev: $(mswindll_)
  4287.     $(SETDEV) mswindll $(mswindll_)
  4288.  
  4289. ### -------------------- The MS-Windows DDB 3.n printer ----------------- ###
  4290.  
  4291. mswinprn_=gdevwprn.$(OBJ) gdevmsxf.$(OBJ)
  4292. mswinprn.dev: $(mswinprn_)
  4293.     $(SETDEV) mswinprn $(mswinprn_)
  4294.  
  4295. gdevwprn.$(OBJ): gdevwprn.c $(gdevmswn_h) $(gp_h)
  4296.  
  4297. ### -------------------- The MS-Windows DIB 3.n printer ----------------- ###
  4298.  
  4299. mswinpr2_=gdevwpr2.$(OBJ)
  4300. mswinpr2.dev: $(mswinpr2_) page.dev
  4301.     $(SETPDEV) mswinpr2 $(mswinpr2_)
  4302.  
  4303. gdevwpr2.$(OBJ): gdevwpr2.c $(PDEVH) $(windows__h)\
  4304.  $(gdevpccm_h) $(gp_h) gp_mswin.h
  4305.  
  4306. ### ------------------ OS/2 Presentation Manager device ----------------- ###
  4307.  
  4308. os2pm_=gdevpm.$(OBJ) gdevpccm.$(OBJ)
  4309. os2pm.dev: $(os2pm_)
  4310.     $(SETDEV) os2pm $(os2pm_)
  4311.  
  4312. os2dll_=gdevpm.$(OBJ) gdevpccm.$(OBJ)
  4313. os2dll.dev: $(os2dll_)
  4314.     $(SETDEV) os2dll $(os2dll_)
  4315.  
  4316. gdevpm.$(OBJ): gdevpm.c $(string__h)\
  4317.  $(gp_h) $(gpcheck_h)\
  4318.  $(gsdll_h) $(gserrors_h) $(gsexit_h) $(gsparam_h)\
  4319.  $(gx_h) $(gxdevice_h) $(gxdevmem_h)\
  4320.  $(gdevpccm_h) gdevpm.h
  4321.  
  4322. ### --------------------------- The OS/2 printer ------------------------ ###
  4323.  
  4324. os2prn_=gdevos2p.$(OBJ)
  4325. os2prn.dev: $(os2prn_) page.dev
  4326.     $(SETPDEV) os2prn $(os2prn_)
  4327.  
  4328. os2prn.$(OBJ): os2prn.c $(gp_h)
  4329.  
  4330. ### -------------- The AT&T 3b1 Unixpc monochrome display --------------- ###
  4331. ### Note: this driver was contributed by a user: please contact           ###
  4332. ###       Andy Fyfe (andy@cs.caltech.edu) if you have questions.          ###
  4333.  
  4334. att3b1_=gdev3b1.$(OBJ)
  4335. att3b1.dev: $(att3b1_)
  4336.     $(SETDEV) att3b1 $(att3b1_)
  4337.  
  4338. gdev3b1.$(OBJ): gdev3b1.c $(GDEV)
  4339.  
  4340. ### ---------------------- Linux PC with vgalib ------------------------- ###
  4341. ### Note: these drivers were contributed by users.                        ###
  4342. ### For questions about the lvga256 driver, please contact                ###
  4343. ###       Ludger Kunz (ludger.kunz@fernuni-hagen.de).                     ###
  4344. ### For questions about the vgalib driver, please contact                 ###
  4345. ###       Erik Talvola (talvola@gnu.ai.mit.edu).                          ###
  4346.  
  4347. lvga256_=gdevl256.$(OBJ)
  4348. lvga256.dev: $(lvga256_)
  4349.     $(SETDEV) lvga256 $(lvga256_)
  4350.     $(ADDMOD) lvga256 -lib vga vgagl
  4351.  
  4352. gdevl256.$(OBJ): gdevl256.c $(GDEV)
  4353.  
  4354. vgalib_=gdevvglb.$(OBJ) gdevpccm.$(OBJ)
  4355. vgalib.dev: $(vgalib_)
  4356.     $(SETDEV) vgalib $(vgalib_)
  4357.     $(ADDMOD) vgalib -lib vga
  4358.  
  4359. gdevvglb.$(OBJ): gdevvglb.c $(GDEV) $(gdevpccm_h) $(gsparam_h)
  4360.  
  4361. ### ------------------- Sony NeWS frame buffer device ------------------ ###
  4362. ### Note: this driver was contributed by a user: please contact          ###
  4363. ###       Mike Smolenski (mike@intertech.com) if you have questions.     ###
  4364.  
  4365. # This is implemented as a 'printer' device.
  4366. sonyfb_=gdevsnfb.$(OBJ)
  4367. sonyfb.dev: $(sonyfb_) page.dev
  4368.     $(SETPDEV) sonyfb $(sonyfb_)
  4369.  
  4370. gdevsnfb.$(OBJ): gdevsnfb.c $(PDEVH)
  4371.  
  4372. ### ------------------------ The SunView device ------------------------ ###
  4373. ### Note: this driver is maintained by a user: if you have questions,    ###
  4374. ###       please contact Andreas Stolcke (stolcke@icsi.berkeley.edu).    ###
  4375.  
  4376. sunview_=gdevsun.$(OBJ)
  4377. sunview.dev: $(sunview_)
  4378.     $(SETDEV) sunview $(sunview_)
  4379.     $(ADDMOD) sunview -lib suntool sunwindow pixrect
  4380.  
  4381. gdevsun.$(OBJ): gdevsun.c $(GDEV) $(malloc__h)\
  4382.  $(gscdefs_h) $(gserrors_h) $(gsmatrix_h)
  4383.  
  4384. ### -------------------------- The X11 device -------------------------- ###
  4385.  
  4386. # Aladdin Enterprises does not support Ghostview.  For more information
  4387. # about Ghostview, please contact Tim Theisen (ghostview@cs.wisc.edu).
  4388.  
  4389. # See the main makefile for the definition of XLIBS.
  4390. x11_=gdevx.$(OBJ) gdevxini.$(OBJ) gdevxxf.$(OBJ) gdevemap.$(OBJ)
  4391. x11.dev: $(x11_)
  4392.     $(SETDEV) x11 $(x11_)
  4393.     $(ADDMOD) x11 -lib $(XLIBS)
  4394.  
  4395. # See the main makefile for the definition of XINCLUDE.
  4396. GDEVX=$(GDEV) x_.h gdevx.h $(MAKEFILE)
  4397. gdevx.$(OBJ): gdevx.c $(GDEVX) $(math__h) $(memory__h) $(gsparam_h)
  4398.     $(CCC) $(XINCLUDE) -I. $(srcdir)/gdevx.c
  4399.  
  4400. gdevxini.$(OBJ): gdevxini.c $(GDEVX) $(math__h) $(memory__h) $(gserrors_h)
  4401.     $(CCC) $(XINCLUDE) -I. $(srcdir)/gdevxini.c
  4402.  
  4403. gdevxxf.$(OBJ): gdevxxf.c $(GDEVX) $(math__h) $(memory__h)\
  4404.  $(gsstruct_h) $(gsutil_h) $(gxxfont_h)
  4405.     $(CCC) $(XINCLUDE) -I. $(srcdir)/gdevxxf.c
  4406.  
  4407. # Alternate X11-based devices to help debug other drivers.
  4408. # x11alpha pretends to have 4 bits of alpha channel.
  4409. # x11cmyk pretends to be a CMYK device with 1 bit each of C,M,Y,K.
  4410. # x11gray2 pretends to be a 2-bit gray-scale device.
  4411. # x11mono pretends to be a black-and-white device.
  4412. x11alt_=$(x11_) gdevxalt.$(OBJ)
  4413. x11alpha.dev: $(x11alt_)
  4414.     $(SETDEV) x11alpha $(x11alt_)
  4415.     $(ADDMOD) x11alpha -lib $(XLIBS)
  4416.  
  4417. x11cmyk.dev: $(x11alt_)
  4418.     $(SETDEV) x11cmyk $(x11alt_)
  4419.     $(ADDMOD) x11cmyk -lib $(XLIBS)
  4420.  
  4421. x11gray2.dev: $(x11alt_)
  4422.     $(SETDEV) x11gray2 $(x11alt_)
  4423.     $(ADDMOD) x11gray2 -lib $(XLIBS)
  4424.  
  4425. x11mono.dev: $(x11alt_)
  4426.     $(SETDEV) x11mono $(x11alt_)
  4427.     $(ADDMOD) x11mono -lib $(XLIBS)
  4428.  
  4429. gdevxalt.$(OBJ): gdevxalt.c $(GDEVX) $(math__h) $(memory__h) $(gsparam_h)
  4430.     $(CCC) $(XINCLUDE) -I. $(srcdir)/gdevxalt.c
  4431.  
  4432. ### ------------------------- DEC sixel displays ------------------------ ###
  4433. ### Note: this driver was contributed by a user: please contact           ###
  4434. ###   Phil Keegstra (keegstra@tonga.gsfc.nasa.gov) if you have questions. ###
  4435.  
  4436. # This is a "printer" device, but it probably shouldn't be.
  4437. # I don't know why the implementor chose to do it this way.
  4438. sxlcrt_=gdevln03.$(OBJ)
  4439. sxlcrt.dev: $(sxlcrt_) page.dev
  4440.     $(SETPDEV) sxlcrt $(sxlcrt_)
  4441.  
  4442. ###### --------------- Memory-buffered printer devices --------------- ######
  4443.  
  4444. ### --------------------- The Apple printer devices --------------------- ###
  4445. ### Note: these drivers were contributed by users.                        ###
  4446. ###   If you have questions about the DMP driver, please contact          ###
  4447. ###    Mark Wedel (master@cats.ucsc.edu).                                ###
  4448. ###   If you have questions about the Imagewriter drivers, please contact ###
  4449. ###    Jonathan Luckey (luckey@rtfm.mlb.fl.us).                          ###
  4450. ###   If you have questions about the Imagewriter LQ driver, please       ###
  4451. ###    contact Scott Barker (barkers@cuug.ab.ca).                        ###
  4452.  
  4453. appledmp_=gdevadmp.$(OBJ)
  4454.  
  4455. gdevadmp.$(OBJ): gdevadmp.c $(PDEVH)
  4456.  
  4457. appledmp.dev: $(appledmp_) page.dev
  4458.     $(SETPDEV) appledmp $(appledmp_)
  4459.  
  4460. iwhi.dev: $(appledmp_) page.dev
  4461.     $(SETPDEV) iwhi $(appledmp_)
  4462.  
  4463. iwlo.dev: $(appledmp_) page.dev
  4464.     $(SETPDEV) iwlo $(appledmp_)
  4465.  
  4466. iwlq.dev: $(appledmp_) page.dev
  4467.     $(SETPDEV) iwlq $(appledmp_)
  4468.  
  4469. ### ------------ The Canon BubbleJet BJ10e and BJ200 devices ------------ ###
  4470.  
  4471. bj10e_=gdevbj10.$(OBJ)
  4472.  
  4473. bj10e.dev: $(bj10e_) page.dev
  4474.     $(SETPDEV) bj10e $(bj10e_)
  4475.  
  4476. bj200.dev: $(bj10e_) page.dev
  4477.     $(SETPDEV) bj200 $(bj10e_)
  4478.  
  4479. gdevbj10.$(OBJ): gdevbj10.c $(PDEVH)
  4480.  
  4481. ### ------------- The CalComp Raster Format ----------------------------- ###
  4482. ### Note: this driver was contributed by a user: please contact           ###
  4483. ###       Ernst Muellner (ernst.muellner@oenzl.siemens.de) if you have    ###
  4484. ###       questions.                                                      ###
  4485.  
  4486. ccr_=gdevccr.$(OBJ)
  4487. ccr.dev: $(ccr_) page.dev
  4488.     $(SETPDEV) ccr $(ccr_)
  4489.  
  4490. gdevccr.$(OBJ): gdevccr.c $(PDEVH)
  4491.  
  4492. ### ----------- The H-P DeskJet and LaserJet printer devices ----------- ###
  4493.  
  4494. ### These are essentially the same device.
  4495. ### NOTE: printing at full resolution (300 DPI) requires a printer
  4496. ###   with at least 1.5 Mb of memory.  150 DPI only requires .5 Mb.
  4497. ### Note that the lj4dith driver is included with the H-P color printer
  4498. ###   drivers below.
  4499.  
  4500. HPPCL=gdevpcl.$(OBJ)
  4501. HPMONO=gdevdjet.$(OBJ) $(HPPCL)
  4502.  
  4503. gdevpcl.$(OBJ): gdevpcl.c $(PDEVH) $(gdevpcl_h)
  4504.  
  4505. gdevdjet.$(OBJ): gdevdjet.c $(PDEVH) $(gdevpcl_h)
  4506.  
  4507. deskjet.dev: $(HPMONO) page.dev
  4508.     $(SETPDEV) deskjet $(HPMONO)
  4509.  
  4510. djet500.dev: $(HPMONO) page.dev
  4511.     $(SETPDEV) djet500 $(HPMONO)
  4512.  
  4513. laserjet.dev: $(HPMONO) page.dev
  4514.     $(SETPDEV) laserjet $(HPMONO)
  4515.  
  4516. ljetplus.dev: $(HPMONO) page.dev
  4517.     $(SETPDEV) ljetplus $(HPMONO)
  4518.  
  4519. ### Selecting ljet2p provides TIFF (mode 2) compression on LaserJet III,
  4520. ### IIIp, IIId, IIIsi, IId, and IIp. 
  4521.  
  4522. ljet2p.dev: $(HPMONO) page.dev
  4523.     $(SETPDEV) ljet2p $(HPMONO)
  4524.  
  4525. ### Selecting ljet3 provides Delta Row (mode 3) compression on LaserJet III,
  4526. ### IIIp, IIId, IIIsi.
  4527.  
  4528. ljet3.dev: $(HPMONO) page.dev
  4529.     $(SETPDEV) ljet3 $(HPMONO)
  4530.  
  4531. ### Selecting ljet3d also provides duplex printing capability.
  4532.  
  4533. ljet3d.dev: $(HPMONO) page.dev
  4534.     $(SETPDEV) ljet3d $(HPMONO)
  4535.  
  4536. ### Selecting ljet4 also provides Delta Row compression on LaserJet IV series.
  4537.  
  4538. ljet4.dev: $(HPMONO) page.dev
  4539.     $(SETPDEV) ljet4 $(HPMONO)
  4540.  
  4541. lp2563.dev: $(HPMONO) page.dev
  4542.     $(SETPDEV) lp2563 $(HPMONO)
  4543.  
  4544. oce9050.dev: $(HPMONO) page.dev
  4545.     $(SETPDEV) oce9050 $(HPMONO)
  4546.  
  4547. ### ------------------ The H-P LaserJet 5 and 6 devices ----------------- ###
  4548.  
  4549. ### These drivers use H-P's new PCL XL printer language, like H-P's
  4550. ### LaserJet 5 Enhanced driver for MS Windows.  We don't recommend using
  4551. ### them:
  4552. ###    - If you have a LJ5L, which isn't a "real" LaserJet 5, use the
  4553. ###    ljet4 driver instead.  (The lj5 drivers won't work.)
  4554. ###    - If you have any other model of LJ 5 or 6, use the pxlmono
  4555. ###    driver, which often produces much more compact output.
  4556.  
  4557. gdevpxat_h=gdevpxat.h
  4558. gdevpxen_h=gdevpxen.h
  4559. gdevpxop_h=gdevpxop.h
  4560.  
  4561. ljet5_=gdevlj56.$(OBJ) $(HPPCL)
  4562. lj5mono.dev: $(ljet5_) page.dev
  4563.     $(SETPDEV) lj5mono $(ljet5_)
  4564.  
  4565. lj5gray.dev: $(ljet5_) page.dev
  4566.     $(SETPDEV) lj5gray $(ljet5_)
  4567.  
  4568. gdevlj56.$(OBJ): gdevlj56.c $(PDEVH) $(gdevpcl_h)\
  4569.  $(gdevpxat_h) $(gdevpxen_h) $(gdevpxop_h)
  4570.  
  4571. ### The H-P DeskJet, PaintJet, and DesignJet family color printer devices.###
  4572. ### Note: there are two different 500C drivers, both contributed by users.###
  4573. ###   If you have questions about the djet500c driver,                    ###
  4574. ###       please contact AKayser@et.tudelft.nl.                           ###
  4575. ###   If you have questions about the cdj* drivers,                       ###
  4576. ###       please contact g.cameron@biomed.abdn.ac.uk.                     ###
  4577. ###   If you have questions about the dnj560c driver,                     ###
  4578. ###       please contact koert@zen.cais.com.                              ###
  4579. ###   If you have questions about the lj4dith driver,                     ###
  4580. ###       please contact Eckhard.Rueggeberg@ts.go.dlr.de.                 ###
  4581. ###   If you have questions about the BJC600/BJC4000, BJC800, or ESCP     ###
  4582. ###       drivers, please contact Yves.Arrouye@imag.fr.                   ###
  4583.  
  4584. cdeskjet_=gdevcdj.$(OBJ) $(HPPCL)
  4585.  
  4586. cdeskjet.dev: $(cdeskjet_) page.dev
  4587.     $(SETPDEV) cdeskjet $(cdeskjet_)
  4588.  
  4589. cdjcolor.dev: $(cdeskjet_) page.dev
  4590.     $(SETPDEV) cdjcolor $(cdeskjet_)
  4591.  
  4592. cdjmono.dev: $(cdeskjet_) page.dev
  4593.     $(SETPDEV) cdjmono $(cdeskjet_)
  4594.  
  4595. cdj500.dev: $(cdeskjet_) page.dev
  4596.     $(SETPDEV) cdj500 $(cdeskjet_)
  4597.  
  4598. cdj550.dev: $(cdeskjet_) page.dev
  4599.     $(SETPDEV) cdj550 $(cdeskjet_)
  4600.  
  4601. declj250.dev: $(cdeskjet_) page.dev
  4602.     $(SETPDEV) declj250 $(cdeskjet_)
  4603.  
  4604. dnj650c.dev: $(cdeskjet_) page.dev
  4605.     $(SETPDEV) dnj650c $(cdeskjet_)
  4606.  
  4607. lj4dith.dev: $(cdeskjet_) page.dev
  4608.     $(SETPDEV) lj4dith $(cdeskjet_)
  4609.  
  4610. pj.dev: $(cdeskjet_) page.dev
  4611.     $(SETPDEV) pj $(cdeskjet_)
  4612.  
  4613. pjxl.dev: $(cdeskjet_) page.dev
  4614.     $(SETPDEV) pjxl $(cdeskjet_)
  4615.  
  4616. pjxl300.dev: $(cdeskjet_) page.dev
  4617.     $(SETPDEV) pjxl300 $(cdeskjet_)
  4618.  
  4619. # Note: the BJC600 driver also works for the BJC4000.
  4620. bjc600.dev: $(cdeskjet_) page.dev
  4621.     $(SETPDEV) bjc600 $(cdeskjet_)
  4622.  
  4623. bjc800.dev: $(cdeskjet_) page.dev
  4624.     $(SETPDEV) bjc800 $(cdeskjet_)
  4625.  
  4626. escp.dev: $(cdeskjet_) page.dev
  4627.     $(SETPDEV) escp $(cdeskjet_)
  4628.  
  4629. # NB: you can also customise the build if required, using
  4630. # -DBitsPerPixel=<number> if you wish the default to be other than 24
  4631. # for the generic drivers (cdj500, cdj550, pjxl300, pjtest, pjxltest).
  4632. gdevcdj.$(OBJ): gdevcdj.c $(std_h) $(PDEVH) gdevbjc.h\
  4633.  $(gsparam_h) $(gsstate_h) $(gxlum_h)\
  4634.  $(gdevpcl_h)
  4635.  
  4636. djet500c_=gdevdjtc.$(OBJ) $(HPPCL)
  4637. djet500c.dev: $(djet500c_) page.dev
  4638.     $(SETPDEV) djet500c $(djet500c_)
  4639.  
  4640. gdevdjtc.$(OBJ): gdevdjtc.c $(PDEVH) $(malloc__h) $(gdevpcl_h)
  4641.  
  4642. ### -------------------- The Mitsubishi CP50 printer -------------------- ###
  4643. ### Note: this driver was contributed by a user: please contact           ###
  4644. ###       Michael Hu (michael@ximage.com) if you have questions.          ###
  4645.  
  4646. cp50_=gdevcp50.$(OBJ)
  4647. cp50.dev: $(cp50_) page.dev
  4648.     $(SETPDEV) cp50 $(cp50_)
  4649.  
  4650. gdevcp50.$(OBJ): gdevcp50.c $(PDEVH)
  4651.  
  4652. ### ----------------- The generic Epson printer device ----------------- ###
  4653. ### Note: most of this code was contributed by users.  Please contact    ###
  4654. ###       the following people if you have questions:                    ###
  4655. ###   eps9mid - Guenther Thomsen (thomsen@cs.tu-berlin.de)               ###
  4656. ###   eps9high - David Wexelblat (dwex@mtgzfs3.att.com)                  ###
  4657. ###   ibmpro - James W. Birdsall (jwbirdsa@picarefy.picarefy.com)        ###
  4658.  
  4659. epson_=gdevepsn.$(OBJ)
  4660.  
  4661. epson.dev: $(epson_) page.dev
  4662.     $(SETPDEV) epson $(epson_)
  4663.  
  4664. eps9mid.dev: $(epson_) page.dev
  4665.     $(SETPDEV) eps9mid $(epson_)
  4666.  
  4667. eps9high.dev: $(epson_) page.dev
  4668.     $(SETPDEV) eps9high $(epson_)
  4669.  
  4670. gdevepsn.$(OBJ): gdevepsn.c $(PDEVH)
  4671.  
  4672. ### ----------------- The IBM Proprinter printer device ---------------- ###
  4673.  
  4674. ibmpro.dev: $(epson_) page.dev
  4675.     $(SETPDEV) ibmpro $(epson_)
  4676.  
  4677. ### -------------- The Epson LQ-2550 color printer device -------------- ###
  4678. ### Note: this driver was contributed by users: please contact           ###
  4679. ###       Dave St. Clair (dave@exlog.com) if you have questions.         ###
  4680.  
  4681. epsonc_=gdevepsc.$(OBJ)
  4682. epsonc.dev: $(epsonc_) page.dev
  4683.     $(SETPDEV) epsonc $(epsonc_)
  4684.  
  4685. gdevepsc.$(OBJ): gdevepsc.c $(PDEVH)
  4686.  
  4687. ### ------------- The Epson ESC/P 2 language printer devices ------------- ###
  4688. ### Note: these drivers were contributed by users.                         ###
  4689. ### For questions about the Stylus 800 and AP3250 drivers, please contact  ###
  4690. ###        Richard Brown (rab@tauon.ph.unimelb.edu.au).                    ###
  4691. ### For questions about the Stylus Color drivers, please contact           ###
  4692. ###        Gunther Hess (gunther@elmos.de).                                ###
  4693.  
  4694. ESCP2=gdevescp.$(OBJ)
  4695.  
  4696. gdevescp.$(OBJ): gdevescp.c $(PDEVH)
  4697.  
  4698. ap3250.dev: $(ESCP2) page.dev
  4699.     $(SETPDEV) ap3250 $(ESCP2)
  4700.  
  4701. st800.dev: $(ESCP2) page.dev
  4702.     $(SETPDEV) st800 $(ESCP2)
  4703.  
  4704. stcolor1_=gdevstc.$(OBJ) gdevstc1.$(OBJ) gdevstc2.$(OBJ)
  4705. stcolor2_=gdevstc3.$(OBJ) gdevstc4.$(OBJ)
  4706. stcolor.dev: $(stcolor1_) $(stcolor2_) page.dev
  4707.     $(SETPDEV) stcolor $(stcolor1_)
  4708.     $(ADDMOD) stcolor -obj $(stcolor2_)
  4709.  
  4710. gdevstc.$(OBJ): gdevstc.c gdevstc.h $(PDEVH)
  4711.  
  4712. gdevstc1.$(OBJ): gdevstc1.c gdevstc.h $(PDEVH)
  4713.  
  4714. gdevstc2.$(OBJ): gdevstc2.c gdevstc.h $(PDEVH)
  4715.  
  4716. gdevstc3.$(OBJ): gdevstc3.c gdevstc.h $(PDEVH)
  4717.  
  4718. gdevstc4.$(OBJ): gdevstc4.c gdevstc.h $(PDEVH)
  4719.  
  4720. ### --------------- Ugly/Update -> Unified Printer Driver ---------------- ###
  4721. ### For questions about this driver, please contact:                       ###
  4722. ###        Gunther Hess (gunther@elmos.de)                                 ###
  4723.  
  4724. uniprint_=gdevupd.$(OBJ)
  4725. uniprint.dev: $(uniprint_) page.dev
  4726.     $(SETPDEV) uniprint $(uniprint_)
  4727.  
  4728. gdevupd.$(OBJ): gdevupd.c $(PDEVH) $(gsparam_h)
  4729.  
  4730. ### -------------- cdj850 - HP 850c Driver under development ------------- ###
  4731. ### Since this driver is in the development-phase it is not distributed    ###
  4732. ### with ghostscript, but it is available via anonymous ftp from:          ###
  4733. ###                        ftp://bonk.ethz.ch                              ###
  4734. ### For questions about this driver, please contact:                       ###
  4735. ###       Uli Wortmann (E-Mail address inside the driver-package)          ###
  4736.  
  4737. cdeskjet8_=gdevcd8.$(OBJ) $(HPPCL)
  4738.  
  4739. cdj850.dev: $(cdeskjet8_) page.dev
  4740.     $(SETPDEV) cdj850 $(cdeskjet8_)
  4741.  
  4742. ### ------------ The H-P PaintJet color printer device ----------------- ###
  4743. ### Note: this driver also supports the DEC LJ250 color printer, which   ###
  4744. ###       has a PaintJet-compatible mode, and the PaintJet XL.           ###
  4745. ### If you have questions about the XL, please contact Rob Reiss         ###
  4746. ###       (rob@moray.berkeley.edu).                                      ###
  4747.  
  4748. PJET=gdevpjet.$(OBJ) $(HPPCL)
  4749.  
  4750. gdevpjet.$(OBJ): gdevpjet.c $(PDEVH) $(gdevpcl_h)
  4751.  
  4752. lj250.dev: $(PJET) page.dev
  4753.     $(SETPDEV) lj250 $(PJET)
  4754.  
  4755. paintjet.dev: $(PJET) page.dev
  4756.     $(SETPDEV) paintjet $(PJET)
  4757.  
  4758. pjetxl.dev: $(PJET) page.dev
  4759.     $(SETPDEV) pjetxl $(PJET)
  4760.  
  4761. ### -------------- Imagen ImPress Laser Printer device ----------------- ###
  4762. ### Note: this driver was contributed by a user: please contact          ###
  4763. ###       Alan Millar (AMillar@bolis.sf-bay.org) if you have questions.  ###
  4764. ### Set USE_BYTE_STREAM if using parallel interface;                     ###
  4765. ### Don't set it if using 'ipr' spooler (default).                       ###
  4766. ### You may also add -DA4 if needed for A4 paper.             ###
  4767.  
  4768. imagen_=gdevimgn.$(OBJ)
  4769. imagen.dev: $(imagen_) page.dev
  4770.     $(SETPDEV) imagen $(imagen_)
  4771.  
  4772. gdevimgn.$(OBJ): gdevimgn.c $(PDEVH)
  4773.     $(CCC) gdevimgn.c            # for ipr spooler
  4774. #    $(CCC) -DUSE_BYTE_STREAM gdevimgn.c    # for parallel
  4775.  
  4776. ### ------- The IBM 3852 JetPrinter color inkjet printer device -------- ###
  4777. ### Note: this driver was contributed by users: please contact           ###
  4778. ###       Kevin Gift (kgift@draper.com) if you have questions.           ###
  4779. ### Note that the paper size that can be addressed by the graphics mode  ###
  4780. ###   used in this driver is fixed at 7-1/2 inches wide (the printable   ###
  4781. ###   width of the jetprinter itself.)                                   ###
  4782.  
  4783. jetp3852_=gdev3852.$(OBJ)
  4784. jetp3852.dev: $(jetp3852_) page.dev
  4785.     $(SETPDEV) jetp3852 $(jetp3852_)
  4786.  
  4787. gdev3852.$(OBJ): gdev3852.c $(PDEVH) $(gdevpcl_h)
  4788.  
  4789. ### ---------- The Canon LBP-8II and LIPS III printer devices ---------- ###
  4790. ### Note: these drivers were contributed by users.                       ###
  4791. ### For questions about these drivers, please contact                    ###
  4792. ###       Lauri Paatero, lauri.paatero@paatero.pp.fi                     ###
  4793.  
  4794. lbp8_=gdevlbp8.$(OBJ)
  4795. lbp8.dev: $(lbp8_) page.dev
  4796.     $(SETPDEV) lbp8 $(lbp8_)
  4797.  
  4798. lips3.dev: $(lbp8_) page.dev
  4799.     $(SETPDEV) lips3 $(lbp8_)
  4800.  
  4801. gdevlbp8.$(OBJ): gdevlbp8.c $(PDEVH)
  4802.  
  4803. ### ----------- The DEC LN03/LA50/LA70/LA75 printer devices ------------ ###
  4804. ### Note: this driver was contributed by users: please contact           ###
  4805. ###       Ulrich Mueller (ulm@vsnhd1.cern.ch) if you have questions.     ###
  4806. ### For questions about LA50 and LA75, please contact                    ###
  4807. ###       Ian MacPhedran (macphed@dvinci.USask.CA).                      ###
  4808. ### For questions about the LA70, please contact                         ###
  4809. ###       Bruce Lowekamp (lowekamp@csugrad.cs.vt.edu).                   ###
  4810. ### For questions about the LA75plus, please contact                     ###
  4811. ###       Andre' Beck (Andre_Beck@IRS.Inf.TU-Dresden.de).                ###
  4812.  
  4813. ln03_=gdevln03.$(OBJ)
  4814. ln03.dev: $(ln03_) page.dev
  4815.     $(SETPDEV) ln03 $(ln03_)
  4816.  
  4817. la50.dev: $(ln03_) page.dev
  4818.     $(SETPDEV) la50 $(ln03_)
  4819.  
  4820. la70.dev: $(ln03_) page.dev
  4821.     $(SETPDEV) la70 $(ln03_)
  4822.  
  4823. la75.dev: $(ln03_) page.dev
  4824.     $(SETPDEV) la75 $(ln03_)
  4825.  
  4826. la75plus.dev: $(ln03_) page.dev
  4827.     $(SETPDEV) la75plus $(ln03_)
  4828.  
  4829. gdevln03.$(OBJ): gdevln03.c $(PDEVH)
  4830.  
  4831. # LA70 driver with low-resolution text enhancement.
  4832.  
  4833. la70t_=gdevla7t.$(OBJ)
  4834. la70t.dev: $(la70t_) page.dev
  4835.     $(SETPDEV) la70t $(la70t_)
  4836.  
  4837. gdevla7t.$(OBJ): gdevla7t.c $(PDEVH)
  4838.  
  4839. ### -------------- The Epson LP-8000 laser printer device -------------- ###
  4840. ### Note: this driver was contributed by a user: please contact Oleg     ###
  4841. ###       Oleg Fat'yanov <faty1@rlem.titech.ac.jp> if you have questions.###
  4842.  
  4843. lp8000_=gdevlp8k.$(OBJ)
  4844. lp8000.dev: $(lp8000_) page.dev
  4845.     $(SETPDEV) lp8000 $(lp8000_)
  4846.  
  4847. gdevlp8k.$(OBJ): gdevlp8k.c $(PDEVH)
  4848.  
  4849. ### -------------- The C.Itoh M8510 printer device --------------------- ###
  4850. ### Note: this driver was contributed by a user: please contact Bob      ###
  4851. ###       Smith <bob@snuffy.penfield.ny.us> if you have questions.       ###
  4852.  
  4853. m8510_=gdev8510.$(OBJ)
  4854. m8510.dev: $(m8510_) page.dev
  4855.     $(SETPDEV) m8510 $(m8510_)
  4856.  
  4857. gdev8510.$(OBJ): gdev8510.c $(PDEVH)
  4858.  
  4859. ### -------------- 24pin Dot-matrix printer with 360DPI ---------------- ###
  4860. ### Note: this driver was contributed by users.  Please contact:         ###
  4861. ###    Andreas Schwab (schwab@ls5.informatik.uni-dortmund.de) for        ###
  4862. ###      questions about the NEC P6;                                     ###
  4863. ###    Christian Felsch (felsch@tu-harburg.d400.de) for                  ###
  4864. ###      questions about the Epson LQ850.                                ###
  4865.  
  4866. dm24_=gdevdm24.$(OBJ)
  4867. gdevdm24.$(OBJ): gdevdm24.c $(PDEVH)
  4868.  
  4869. necp6.dev: $(dm24_) page.dev
  4870.     $(SETPDEV) necp6 $(dm24_)
  4871.  
  4872. lq850.dev: $(dm24_) page.dev
  4873.     $(SETPDEV) lq850 $(dm24_)
  4874.  
  4875. ### ----------------- The Okidata MicroLine 182 device ----------------- ###
  4876. ### Note: this driver was contributed by a user: please contact          ###
  4877. ###       Maarten Koning (smeg@bnr.ca) if you have questions.            ###
  4878.  
  4879. oki182_=gdevo182.$(OBJ)
  4880. oki182.dev: $(oki182_) page.dev
  4881.     $(SETPDEV) oki182 $(oki182_)
  4882.  
  4883. gdevo182.$(OBJ): gdevo182.c $(PDEVH)
  4884.  
  4885. ### ------------- The Okidata IBM compatible printer device ------------ ###
  4886. ### Note: this driver was contributed by a user: please contact          ###
  4887. ###       Charles Mack (chasm@netcom.com) if you have questions.         ###
  4888.  
  4889. okiibm_=gdevokii.$(OBJ)
  4890. okiibm.dev: $(okiibm_) page.dev
  4891.     $(SETPDEV) okiibm $(okiibm_)
  4892.  
  4893. gdevokii.$(OBJ): gdevokii.c $(PDEVH)
  4894.  
  4895. ### ------------- The Ricoh 4081 laser printer device ------------------ ###
  4896. ### Note: this driver was contributed by users:                          ###
  4897. ###       please contact kdw@oasis.icl.co.uk if you have questions.      ###
  4898.  
  4899. r4081_=gdev4081.$(OBJ)
  4900. r4081.dev: $(r4081_) page.dev
  4901.     $(SETPDEV) r4081 $(r4081_)
  4902.  
  4903.  
  4904. gdev4081.$(OBJ): gdev4081.c $(PDEVH)
  4905.  
  4906. ### -------------------- Sony NWP533 printer device -------------------- ###
  4907. ### Note: this driver was contributed by a user: please contact Tero     ###
  4908. ###       Kivinen (kivinen@joker.cs.hut.fi) if you have questions.       ###
  4909.  
  4910. nwp533_=gdevn533.$(OBJ)
  4911. nwp533.dev: $(nwp533_) page.dev
  4912.     $(SETPDEV) nwp533 $(nwp533_)
  4913.  
  4914. gdevn533.$(OBJ): gdevn533.c $(PDEVH)
  4915.  
  4916. ### ------------------------- The SPARCprinter ------------------------- ###
  4917. ### Note: this driver was contributed by users: please contact Martin    ###
  4918. ###       Schulte (schulte@thp.uni-koeln.de) if you have questions.      ###
  4919. ###       He would also like to hear from anyone using the driver.       ###
  4920. ### Please consult the source code for additional documentation.         ###
  4921.  
  4922. sparc_=gdevsppr.$(OBJ)
  4923. sparc.dev: $(sparc_) page.dev
  4924.     $(SETPDEV) sparc $(sparc_)
  4925.  
  4926. gdevsppr.$(OBJ): gdevsppr.c $(PDEVH)
  4927.  
  4928. ### ----------------- The StarJet SJ48 device -------------------------- ###
  4929. ### Note: this driver was contributed by a user: if you have questions,  ###
  4930. ###                          .                                          ###
  4931. ###       please contact Mats Akerblom (f86ma@dd.chalmers.se).           ###
  4932.  
  4933. sj48_=gdevsj48.$(OBJ)
  4934. sj48.dev: $(sj48_) page.dev
  4935.     $(SETPDEV) sj48 $(sj48_)
  4936.  
  4937. gdevsj48.$(OBJ): gdevsj48.c $(PDEVH)
  4938.  
  4939. ### ----------------- Tektronix 4396d color printer -------------------- ###
  4940. ### Note: this driver was contributed by a user: please contact          ###
  4941. ###       Karl Hakimian (hakimian@haney.eecs.wsu.edu)                    ###
  4942. ###       if you have questions.                                         ###
  4943.  
  4944. t4693d_=gdev4693.$(OBJ)
  4945. t4693d2.dev: $(t4693d_) page.dev
  4946.     $(SETPDEV) t4693d2 $(t4693d_)
  4947.  
  4948. t4693d4.dev: $(t4693d_) page.dev
  4949.     $(SETPDEV) t4693d4 $(t4693d_)
  4950.  
  4951. t4693d8.dev: $(t4693d_) page.dev
  4952.     $(SETPDEV) t4693d8 $(t4693d_)
  4953.  
  4954. gdev4693.$(OBJ): gdev4693.c $(PDEVH)
  4955.  
  4956. ### -------------------- Tektronix ink-jet printers -------------------- ###
  4957. ### Note: this driver was contributed by a user: please contact          ###
  4958. ###       Karsten Spang (spang@nbivax.nbi.dk) if you have questions.     ###
  4959.  
  4960. tek4696_=gdevtknk.$(OBJ)
  4961. tek4696.dev: $(tek4696_) page.dev
  4962.     $(SETPDEV) tek4696 $(tek4696_)
  4963.  
  4964. gdevtknk.$(OBJ): gdevtknk.c $(PDEVH) $(malloc__h)
  4965.  
  4966. ### ----------------- The Xerox XES printer device --------------------- ###
  4967. ### Note: this driver was contributed by users: please contact           ###
  4968. ###       Peter Flass (flass@lbdrscs.bitnet) if you have questions.      ###
  4969.  
  4970. xes_=gdevxes.$(OBJ)
  4971. xes.dev: $(xes_) page.dev
  4972.     $(SETPDEV) xes $(xes_)
  4973.  
  4974. gdevxes.$(OBJ): gdevxes.c $(PDEVH)
  4975.  
  4976. ###### ------------------------- Fax devices ------------------------- ######
  4977.  
  4978. ### --------------- Generic PostScript system compatible fax ------------ ###
  4979.  
  4980. # This code doesn't work yet.  Don't even think about using it.
  4981.  
  4982. PSFAX=gdevpfax.$(OBJ)
  4983.  
  4984. psfax_=$(PSFAX)
  4985. psfax.dev: $(psfax_) page.dev
  4986.     $(SETPDEV) psfax $(psfax_)
  4987.     $(ADDMOD) psfax -iodev Fax
  4988.  
  4989. gdevpfax.$(OBJ): gdevpfax.c $(PDEVH) $(gsparam_h) $(gxiodev_h)
  4990.  
  4991. ### ------------------------- The DigiFAX device ------------------------ ###
  4992. ###    This driver outputs images in a format suitable for use with       ###
  4993. ###    DigiBoard, Inc.'s DigiFAX software.  Use -sDEVICE=dfaxhigh for     ###
  4994. ###    high resolution output, -sDEVICE=dfaxlow for normal output.        ###
  4995. ### Note: this driver was contributed by a user: please contact           ###
  4996. ###       Rick Richardson (rick@digibd.com) if you have questions.        ###
  4997.  
  4998. dfax_=gdevdfax.$(OBJ) gdevtfax.$(OBJ)
  4999.  
  5000. dfaxlow.dev: $(dfax_) page.dev
  5001.     $(SETPDEV) dfaxlow $(dfax_)
  5002.     $(ADDMOD) dfaxlow -include cfe
  5003.  
  5004. dfaxhigh.dev: $(dfax_) page.dev
  5005.     $(SETPDEV) dfaxhigh $(dfax_)
  5006.     $(ADDMOD) dfaxhigh -include cfe
  5007.  
  5008. gdevdfax.$(OBJ): gdevdfax.c $(PDEVH) $(scfx_h) $(strimpl_h)
  5009.  
  5010. ### --------------See under TIFF below for fax-format TIFF -------------- ###
  5011.  
  5012. ###### ------------------- High-level file formats ------------------- ######
  5013.  
  5014. # Support for PostScript and PDF
  5015.  
  5016. gdevpsdf_h=gdevpsdf.h $(gdevvec_h) $(strimpl_h)
  5017. gdevpstr_h=gdevpstr.h
  5018.  
  5019. gdevpsdf.$(OBJ): gdevpsdf.c $(stdio__h) $(string__h)\
  5020.  $(gserror_h) $(gserrors_h) $(gsmemory_h) $(gsparam_h) $(gstypes_h)\
  5021.  $(gxdevice_h)\
  5022.  $(scfx_h) $(slzwx_h) $(srlx_h) $(strimpl_h)\
  5023.  $(gdevpsdf_h) $(gdevpstr_h)
  5024.  
  5025. gdevpstr.$(OBJ): gdevpstr.c $(math__h) $(stdio__h) $(string__h)\
  5026.  $(gdevpstr_h) $(stream_h)
  5027.  
  5028. # PostScript and EPS writers
  5029.  
  5030. pswrite1_=gdevps.$(OBJ) gdevpsdf.$(OBJ) gdevpstr.$(OBJ)
  5031. pswrite2_=scantab.$(OBJ) sfilter2.$(OBJ)
  5032. pswrite_=$(pswrite1_) $(pswrite2_)
  5033. epswrite.dev: $(ECHOGS_XE) $(pswrite_) vector.dev
  5034.     $(SETDEV) epswrite $(pswrite1_)
  5035.     $(ADDMOD) epswrite $(pswrite2_)
  5036.     $(ADDMOD) epswrite -include vector
  5037.  
  5038. pswrite.dev: $(ECHOGS_XE) $(pswrite_) vector.dev
  5039.     $(SETDEV) pswrite $(pswrite1_)
  5040.     $(ADDMOD) pswrite $(pswrite2_)
  5041.     $(ADDMOD) pswrite -include vector
  5042.  
  5043. gdevps.$(OBJ): gdevps.c $(GDEV) $(math__h) $(time__h)\
  5044.  $(gscdefs_h) $(gscspace_h) $(gsparam_h) $(gsiparam_h) $(gsmatrix_h)\
  5045.  $(gxdcolor_h)\
  5046.  $(sa85x_h) $(strimpl_h)\
  5047.  $(gdevpsdf_h) $(gdevpstr_h)
  5048.  
  5049. # PDF writer
  5050. # Note that gs_pdfwr.ps will only actually be loaded if the configuration
  5051. # includes a PostScript interpreter.
  5052.  
  5053. pdfwrite1_=gdevpdf.$(OBJ) gdevpdfi.$(OBJ) gdevpdfm.$(OBJ)
  5054. pdfwrite2_=gdevpdfp.$(OBJ) gdevpdft.$(OBJ) gdevpsdf.$(OBJ) gdevpstr.$(OBJ)
  5055. pdfwrite3_=gsflip.$(OBJ) scantab.$(OBJ) sfilter2.$(OBJ) sstring.$(OBJ)
  5056. pdfwrite_=$(pdfwrite1_) $(pdfwrite2_) $(pdfwrite3_)
  5057. pdfwrite.dev: $(ECHOGS_XE) $(pdfwrite_) \
  5058.   cmyklib.dev cfe.dev dcte.dev lzwe.dev rle.dev vector.dev
  5059.     $(SETDEV) pdfwrite $(pdfwrite1_)
  5060.     $(ADDMOD) pdfwrite $(pdfwrite2_)
  5061.     $(ADDMOD) pdfwrite $(pdfwrite3_)
  5062.     $(ADDMOD) pdfwrite -ps gs_pdfwr
  5063.     $(ADDMOD) pdfwrite -include cmyklib cfe dcte lzwe rle vector
  5064.  
  5065. gdevpdfx_h=gdevpdfx.h $(gsparam_h) $(gxdevice_h) $(gxline_h) $(stream_h)\
  5066.  $(gdevpsdf_h) $(gdevpstr_h)
  5067.  
  5068. gdevpdf.$(OBJ): gdevpdf.c $(math__h) $(string__h) $(time__h) $(gp_h) \
  5069.   $(gdevpdfx_h) $(gscdefs_h) $(gserrors_h) \
  5070.   $(gx_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h) $(gxpaint_h) \
  5071.   $(gzcpath_h) $(gzpath_h) $(scfx_h) $(strimpl_h)
  5072.  
  5073. gdevpdfi.$(OBJ): gdevpdfi.c $(memory__h) $(gx_h) \
  5074.   $(gdevpdfx_h) $(gserrors_h) $(gsflip_h) $(gxcspace_h) $(gxistate_h) \
  5075.   $(sa85x_h) $(scfx_h) $(srlx_h) $(strimpl_h)
  5076.  
  5077. gdevpdfm.$(OBJ): gdevpdfm.c $(memory__h) $(string__h) $(gx_h) \
  5078.   $(gdevpdfx_h) $(gserrors_h) $(gsutil_h) $(scanchar_h)
  5079.  
  5080. gdevpdfp.$(OBJ): gdevpdfp.c $(gx_h)\
  5081.  $(gdevpdfx_h) $(gserrors_h)
  5082.  
  5083. gdevpdft.$(OBJ): gdevpdft.c $(math__h) $(string__h) $(gx_h)\
  5084.  $(gdevpdfx_h) $(gserrors_h) $(gsutil_h)\
  5085.  $(sstring_h) $(strimpl_h)
  5086.  
  5087. # High-level PCL XL writer
  5088.  
  5089. pxl_=gdevpx.$(OBJ)
  5090. pxlmono.dev: $(pxl_) $(GDEV) vector.dev
  5091.     $(SETDEV) pxlmono $(pxl_)
  5092.     $(ADDMOD) pxlmono -include vector
  5093.  
  5094. pxlcolor.dev: $(pxl_) $(GDEV) vector.dev
  5095.     $(SETDEV) pxlcolor $(pxl_)
  5096.     $(ADDMOD) pxlcolor -include vector
  5097.  
  5098. gdevpx.$(OBJ): gdevpx.c $(math__h) $(memory__h) $(string__h)\
  5099.  $(gx_h) $(gsccolor_h) $(gsdcolor_h) $(gserrors_h)\
  5100.  $(gxcspace_h) $(gxdevice_h) $(gxpath_h)\
  5101.  $(gdevpxat_h) $(gdevpxen_h) $(gdevpxop_h) $(gdevvec_h)\
  5102.  $(srlx_h) $(strimpl_h)
  5103.  
  5104. ###### --------------------- Raster file formats --------------------- ######
  5105.  
  5106. ### --------------------- The "plain bits" devices ---------------------- ###
  5107.  
  5108. bit_=gdevbit.$(OBJ)
  5109.  
  5110. bit.dev: $(bit_) page.dev
  5111.     $(SETPDEV) bit $(bit_)
  5112.  
  5113. bitrgb.dev: $(bit_) page.dev
  5114.     $(SETPDEV) bitrgb $(bit_)
  5115.  
  5116. bitcmyk.dev: $(bit_) page.dev
  5117.     $(SETPDEV) bitcmyk $(bit_)
  5118.  
  5119. gdevbit.$(OBJ): gdevbit.c $(PDEVH) $(gsparam_h) $(gxlum_h)
  5120.  
  5121. ### ------------------------- .BMP file formats ------------------------- ###
  5122.  
  5123. bmp_=gdevbmp.$(OBJ) gdevpccm.$(OBJ)
  5124.  
  5125. gdevbmp.$(OBJ): gdevbmp.c $(PDEVH) $(gdevpccm_h)
  5126.  
  5127. bmpmono.dev: $(bmp_) page.dev
  5128.     $(SETPDEV) bmpmono $(bmp_)
  5129.  
  5130. bmp16.dev: $(bmp_) page.dev
  5131.     $(SETPDEV) bmp16 $(bmp_)
  5132.  
  5133. bmp256.dev: $(bmp_) page.dev
  5134.     $(SETPDEV) bmp256 $(bmp_)
  5135.  
  5136. bmp16m.dev: $(bmp_) page.dev
  5137.     $(SETPDEV) bmp16m $(bmp_)
  5138.  
  5139. ### -------------------------- CGM file format ------------------------- ###
  5140. ### This driver is under development.  Use at your own risk.             ###
  5141. ### The output is very low-level, consisting only of rectangles and      ###
  5142. ### cell arrays.                                                         ###
  5143.  
  5144. cgm_=gdevcgm.$(OBJ) gdevcgml.$(OBJ)
  5145.  
  5146. gdevcgml_h=gdevcgml.h
  5147. gdevcgmx_h=gdevcgmx.h $(gdevcgml_h)
  5148.  
  5149. gdevcgm.$(OBJ): gdevcgm.c $(GDEV) $(memory__h)\
  5150.  $(gsparam_h) $(gdevpccm_h) $(gdevcgml_h)
  5151.  
  5152. gdevcgml.$(OBJ): gdevcgml.c $(memory__h) $(stdio__h)\
  5153.  $(gdevcgmx_h)
  5154.  
  5155. cgmmono.dev: $(cgm_)
  5156.     $(SETDEV) cgmmono $(cgm_)
  5157.  
  5158. cgm8.dev: $(cgm_)
  5159.     $(SETDEV) cgm8 $(cgm_)
  5160.  
  5161. cgm24.dev: $(cgm_)
  5162.     $(SETDEV) cgm24 $(cgm_)
  5163.  
  5164. ### -------------------- The CIF file format for VLSI ------------------ ###
  5165. ### Note: this driver was contributed by a user: please contact          ###
  5166. ###       Frederic Petrot (petrot@masi.ibp.fr) if you have questions.    ###
  5167.  
  5168. cif_=gdevcif.$(OBJ)
  5169. cif.dev: $(cif_) page.dev
  5170.     $(SETPDEV) cif $(cif_)
  5171.  
  5172. gdevcif.$(OBJ): gdevcif.c $(PDEVH)
  5173.  
  5174. ### ------------------------- JPEG file format ------------------------- ###
  5175.  
  5176. jpeg_=gdevjpeg.$(OBJ)
  5177.  
  5178. # RGB output
  5179. jpeg.dev: $(jpeg_) sdcte.dev page.dev
  5180.     $(SETPDEV) jpeg $(jpeg_)
  5181.     $(ADDMOD) jpeg -include sdcte
  5182.  
  5183. # Gray output
  5184. jpeggray.dev: $(jpeg_) sdcte.dev page.dev
  5185.     $(SETPDEV) jpeggray $(jpeg_)
  5186.     $(ADDMOD) jpeggray -include sdcte
  5187.  
  5188. gdevjpeg.$(OBJ): gdevjpeg.c $(stdio__h) $(PDEVH)\
  5189.  $(sdct_h) $(sjpeg_h) $(stream_h) $(strimpl_h) jpeglib.h
  5190.  
  5191. ### ------------------------- MIFF file format ------------------------- ###
  5192. ### Right now we support only 24-bit direct color, but we might add more ###
  5193. ### formats in the future.                                               ###
  5194.  
  5195. miff_=gdevmiff.$(OBJ)
  5196.  
  5197. miff24.dev: $(miff_) page.dev
  5198.     $(SETPDEV) miff24 $(miff_)
  5199.  
  5200. gdevmiff.$(OBJ): gdevmiff.c $(PDEVH)
  5201.  
  5202. ### --------------------------- MGR devices ---------------------------- ###
  5203. ### Note: these drivers were contributed by a user: please contact       ###
  5204. ###       Carsten Emde (carsten@ce.pr.net.ch) if you have questions.     ###
  5205.  
  5206. MGR=gdevmgr.$(OBJ) gdevpccm.$(OBJ)
  5207.  
  5208. gdevmgr.$(OBJ): gdevmgr.c $(PDEVH) $(gdevpccm_h) gdevmgr.h
  5209.  
  5210. mgrmono.dev: $(MGR) page.dev
  5211.     $(SETPDEV) mgrmono $(MGR)
  5212.  
  5213. mgrgray2.dev: $(MGR) page.dev
  5214.     $(SETPDEV) mgrgray2 $(MGR)
  5215.  
  5216. mgrgray4.dev: $(MGR) page.dev
  5217.     $(SETPDEV) mgrgray4 $(MGR)
  5218.  
  5219. mgrgray8.dev: $(MGR) page.dev
  5220.     $(SETPDEV) mgrgray8 $(MGR)
  5221.  
  5222. mgr4.dev: $(MGR) page.dev
  5223.     $(SETPDEV) mgr4 $(MGR)
  5224.  
  5225. mgr8.dev: $(MGR) page.dev
  5226.     $(SETPDEV) mgr8 $(MGR)
  5227.  
  5228. ### ------------------------- PCX file formats ------------------------- ###
  5229.  
  5230. pcx_=gdevpcx.$(OBJ) gdevpccm.$(OBJ)
  5231.  
  5232. gdevpcx.$(OBJ): gdevpcx.c $(PDEVH) $(gdevpccm_h) $(gxlum_h)
  5233.  
  5234. pcxmono.dev: $(pcx_) page.dev
  5235.     $(SETPDEV) pcxmono $(pcx_)
  5236.  
  5237. pcxgray.dev: $(pcx_) page.dev
  5238.     $(SETPDEV) pcxgray $(pcx_)
  5239.  
  5240. pcx16.dev: $(pcx_) page.dev
  5241.     $(SETPDEV) pcx16 $(pcx_)
  5242.  
  5243. pcx256.dev: $(pcx_) page.dev
  5244.     $(SETPDEV) pcx256 $(pcx_)
  5245.  
  5246. pcx24b.dev: $(pcx_) page.dev
  5247.     $(SETPDEV) pcx24b $(pcx_)
  5248.  
  5249. pcxcmyk.dev: $(pcx_) page.dev
  5250.     $(SETPDEV) pcxcmyk $(pcx_)
  5251.  
  5252. # The 2-up PCX device is here only as an example, and for testing.
  5253. pcx2up.dev: $(LIB_MAK) $(ECHOGS_XE) gdevp2up.$(OBJ) page.dev pcx256.dev
  5254.     $(SETPDEV) pcx2up gdevp2up.$(OBJ)
  5255.     $(ADDMOD) pcx2up -include pcx256
  5256.  
  5257. gdevp2up.$(OBJ): gdevp2up.c $(AK)\
  5258.  $(gdevpccm_h) $(gdevprn_h) $(gxclpage_h)
  5259.  
  5260. ### ------------------- Portable Bitmap file formats ------------------- ###
  5261. ### For more information, see the pbm(5), pgm(5), and ppm(5) man pages.  ###
  5262.  
  5263. pxm_=gdevpbm.$(OBJ)
  5264.  
  5265. gdevpbm.$(OBJ): gdevpbm.c $(PDEVH) $(gscdefs_h) $(gxlum_h)
  5266.  
  5267. ### Portable Bitmap (PBM, plain or raw format, magic numbers "P1" or "P4")
  5268.  
  5269. pbm.dev: $(pxm_) page.dev
  5270.     $(SETPDEV) pbm $(pxm_)
  5271.  
  5272. pbmraw.dev: $(pxm_) page.dev
  5273.     $(SETPDEV) pbmraw $(pxm_)
  5274.  
  5275. ### Portable Graymap (PGM, plain or raw format, magic numbers "P2" or "P5")
  5276.  
  5277. pgm.dev: $(pxm_) page.dev
  5278.     $(SETPDEV) pgm $(pxm_)
  5279.  
  5280. pgmraw.dev: $(pxm_) page.dev
  5281.     $(SETPDEV) pgmraw $(pxm_)
  5282.  
  5283. # PGM with automatic optimization to PBM if this is possible.
  5284.  
  5285. pgnm.dev: $(pxm_) page.dev
  5286.     $(SETPDEV) pgnm $(pxm_)
  5287.  
  5288. pgnmraw.dev: $(pxm_) page.dev
  5289.     $(SETPDEV) pgnmraw $(pxm_)
  5290.  
  5291. ### Portable Pixmap (PPM, plain or raw format, magic numbers "P3" or "P6")
  5292.  
  5293. ppm.dev: $(pxm_) page.dev
  5294.     $(SETPDEV) ppm $(pxm_)
  5295.  
  5296. ppmraw.dev: $(pxm_) page.dev
  5297.     $(SETPDEV) ppmraw $(pxm_)
  5298.  
  5299. # PPM with automatic optimization to PGM or PBM if possible.
  5300.  
  5301. pnm.dev: $(pxm_) page.dev
  5302.     $(SETPDEV) pnm $(pxm_)
  5303.  
  5304. pnmraw.dev: $(pxm_) page.dev
  5305.     $(SETPDEV) pnmraw $(pxm_)
  5306.  
  5307. ### Portable inKmap (CMYK internally, converted to PPM=RGB at output time)
  5308.  
  5309. pkm.dev: $(pxm_) page.dev
  5310.     $(SETPDEV) pkm $(pxm_)
  5311.  
  5312. pkmraw.dev: $(pxm_) page.dev
  5313.     $(SETPDEV) pkmraw $(pxm_)
  5314.  
  5315. ### --------------- Portable Network Graphics file format --------------- ###
  5316. ### Requires libpng 0.81 and zlib 0.95 (or more recent versions).         ###
  5317. ### See libpng.mak and zlib.mak for more details.                         ###
  5318.  
  5319. png_=gdevpng.$(OBJ) gdevpccm.$(OBJ)
  5320.  
  5321. gdevpng.$(OBJ): gdevpng.c $(gdevprn_h) $(gdevpccm_h) $(gscdefs_h) $(PSRC)png.h
  5322.     $(CCCP) -I. $(srcdir)/gdevpng.c
  5323.  
  5324. pngmono.dev: libpng.dev $(png_) page.dev
  5325.     $(SETPDEV) pngmono  $(png_)
  5326.     $(ADDMOD) pngmono  -include libpng
  5327.  
  5328. pnggray.dev: libpng.dev $(png_) page.dev
  5329.     $(SETPDEV) pnggray  $(png_)
  5330.     $(ADDMOD) pnggray  -include libpng
  5331.  
  5332. png16.dev: libpng.dev $(png_) page.dev
  5333.     $(SETPDEV) png16  $(png_)
  5334.     $(ADDMOD) png16  -include libpng
  5335.  
  5336. png256.dev: libpng.dev $(png_) page.dev
  5337.     $(SETPDEV) png256  $(png_)
  5338.     $(ADDMOD) png256  -include libpng
  5339.  
  5340. png16m.dev: libpng.dev $(png_) page.dev
  5341.     $(SETPDEV) png16m  $(png_)
  5342.     $(ADDMOD) png16m  -include libpng
  5343.  
  5344. ### ---------------------- PostScript image format ---------------------- ###
  5345. ### These devices make it possible to print Level 2 files on a Level 1    ###
  5346. ###   printer, by converting them to a bitmap in PostScript format.       ###
  5347.  
  5348. ps_=gdevpsim.$(OBJ)
  5349.  
  5350. gdevpsim.$(OBJ): gdevpsim.c $(PDEVH)
  5351.  
  5352. psmono.dev: $(ps_) page.dev
  5353.     $(SETPDEV) psmono $(ps_)
  5354.  
  5355. psgray.dev: $(ps_) page.dev
  5356.     $(SETPDEV) psgray $(ps_)
  5357.  
  5358. # Someday there will be RGB and CMYK variants....
  5359.  
  5360. ### -------------------------- SGI RGB pixmaps -------------------------- ###
  5361.  
  5362. sgirgb_=gdevsgi.$(OBJ)
  5363.  
  5364. gdevsgi.$(OBJ): gdevsgi.c $(PDEVH) gdevsgi.h
  5365.  
  5366. sgirgb.dev: $(sgirgb_) page.dev
  5367.     $(SETPDEV) sgirgb $(sgirgb_)
  5368.  
  5369. ### -------------------- Plain or TIFF fax encoding --------------------- ###
  5370. ###    Use -sDEVICE=tiffg3 or tiffg4 and                  ###
  5371. ###      -r204x98 for low resolution output, or              ###
  5372. ###      -r204x196 for high resolution output                  ###
  5373. ###    These drivers recognize 3 page sizes: letter, A4, and B4.      ###
  5374.  
  5375. gdevtifs_h=gdevtifs.h
  5376.  
  5377. tfax_=gdevtfax.$(OBJ)
  5378. tfax.dev: $(tfax_) cfe.dev lzwe.dev rle.dev tiffs.dev
  5379.     $(SETMOD) tfax $(tfax_)
  5380.     $(ADDMOD) tfax -include cfe lzwe rle tiffs
  5381.  
  5382. gdevtfax.$(OBJ): gdevtfax.c $(PDEVH)\
  5383.  $(gdevtifs_h) $(scfx_h) $(slzwx_h) $(srlx_h) $(strimpl_h)
  5384.  
  5385. ### Plain G3/G4 fax with no header
  5386.  
  5387. faxg3.dev: tfax.dev
  5388.     $(SETDEV) faxg3 -include tfax
  5389.  
  5390. faxg32d.dev: tfax.dev
  5391.     $(SETDEV) faxg32d -include tfax
  5392.  
  5393. faxg4.dev: tfax.dev
  5394.     $(SETDEV) faxg4 -include tfax
  5395.  
  5396. ### ---------------------------- TIFF formats --------------------------- ###
  5397.  
  5398. tiffs_=gdevtifs.$(OBJ)
  5399. tiffs.dev: $(tiffs_) page.dev
  5400.     $(SETMOD) tiffs $(tiffs_)
  5401.     $(ADDMOD) tiffs -include page
  5402.  
  5403. gdevtifs.$(OBJ): gdevtifs.c $(PDEVH) $(stdio__h) $(time__h) \
  5404.  $(gdevtifs_h) $(gscdefs_h) $(gstypes_h)
  5405.  
  5406. # Black & white, G3/G4 fax
  5407.  
  5408. tiffcrle.dev: tfax.dev
  5409.     $(SETDEV) tiffcrle -include tfax
  5410.  
  5411. tiffg3.dev: tfax.dev
  5412.     $(SETDEV) tiffg3 -include tfax
  5413.  
  5414. tiffg32d.dev: tfax.dev
  5415.     $(SETDEV) tiffg32d -include tfax
  5416.  
  5417. tiffg4.dev: tfax.dev
  5418.     $(SETDEV) tiffg4 -include tfax
  5419.  
  5420. # Black & white, LZW compression
  5421.  
  5422. tifflzw.dev: tfax.dev
  5423.     $(SETDEV) tifflzw -include tfax
  5424.  
  5425. # Black & white, PackBits compression
  5426.  
  5427. tiffpack.dev: tfax.dev
  5428.     $(SETDEV) tiffpack -include tfax
  5429.  
  5430. # RGB, no compression
  5431.  
  5432. tiffrgb_=gdevtfnx.$(OBJ)
  5433.  
  5434. tiff12nc.dev: $(tiffrgb_) tiffs.dev
  5435.     $(SETPDEV) tiff12nc $(tiffrgb_)
  5436.     $(ADDMOD) tiff12nc -include tiffs
  5437.  
  5438. tiff24nc.dev: $(tiffrgb_) tiffs.dev
  5439.     $(SETPDEV) tiff24nc $(tiffrgb_)
  5440.     $(ADDMOD) tiff24nc -include tiffs
  5441.  
  5442. gdevtfnx.$(OBJ): gdevtfnx.c $(PDEVH) $(gdevtifs_h)
  5443. #    Copyright (C) 1990, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  5444. # This file is part of Aladdin Ghostscript.
  5445. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  5446. # or distributor accepts any responsibility for the consequences of using it,
  5447. # or for whether it serves any particular purpose or works at all, unless he
  5448. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  5449. # License (the "License") for full details.
  5450. # Every copy of Aladdin Ghostscript must include a copy of the License,
  5451. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  5452. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  5453. # under certain conditions described in the License.  Among other things, the
  5454. # License requires that the copyright notice and this notice be preserved on
  5455. # all copies.
  5456.  
  5457. # Partial makefile common to all Unix configurations.
  5458.  
  5459. # This is the last part of the makefile for Unix configurations.
  5460. # Since Unix make doesn't have an 'include' facility, we concatenate
  5461. # the various parts of the makefile together by brute force (in tar_cat).
  5462.  
  5463. # Define the name of this makefile.
  5464. UNIXTAIL_MAK=unixtail.mak
  5465.  
  5466. # The following prevents GNU make from constructing argument lists that
  5467. # include all environment variables, which can easily be longer than
  5468. # brain-damaged system V allows.
  5469.  
  5470. .NOEXPORT:
  5471.  
  5472. # -------------------------------- Library -------------------------------- #
  5473.  
  5474. amiga__=gp_nofb.$(OBJ) gp_amiga.$(OBJ) gdevpipe.$(OBJ) #ldexp.$(OBJ) frexp.$(OBJ) modf.$(OBJ)
  5475. amiga_.dev: $(amiga__)
  5476.     $(SETMOD) amiga_ $(amiga__)
  5477.     $(ADDMOD) amiga_ -iodev pipe
  5478.  
  5479. gp_amiga.$(OBJ): gp_amiga.c $(AK) $(string__h) $(gx_h) $(gsexit_h) $(gp_h) \
  5480.   $(time__h)
  5481.  
  5482. ## The Unix platforms
  5483.  
  5484. # We have to include a test for the existence of sys/time.h,
  5485. # because some System V platforms don't have it.
  5486.  
  5487. # Define pipes as a separable feature.
  5488.  
  5489. pipe_=gdevpipe.$(OBJ)
  5490. pipe.dev: $(UNIXTAIL_MAK) $(ECHOGS_XE) $(pipe_)
  5491.     $(SETMOD) pipe $(pipe_)
  5492.     $(ADDMOD) pipe -iodev pipe
  5493.  
  5494. gdevpipe.$(OBJ): gdevpipe.c $(AK) $(errno__h) $(stdio__h) $(string__h) \
  5495.   $(gserror_h) $(gsmemory_h) $(gstypes_h) $(gxiodev_h) $(stream_h)
  5496.  
  5497. # Unix platforms other than System V, and also System V Release 4
  5498. # (SVR4) platforms.
  5499. unix__=gp_nofb.$(OBJ) gp_unix.$(OBJ) gp_unifs.$(OBJ) gp_unifn.$(OBJ)
  5500. unix_.dev: $(unix__)
  5501.     $(SETMOD) unix_ $(unix__)
  5502.  
  5503. gp_unix.$(OBJ): gp_unix.c $(AK) $(string__h) $(gx_h) $(gsexit_h) $(gp_h) \
  5504.   $(time__h)
  5505.  
  5506. # System V platforms other than SVR4, which lack some system calls,
  5507. # but have pipes.
  5508. sysv__=gp_nofb.$(OBJ) gp_unix.$(OBJ) gp_unifs.$(OBJ) gp_unifn.$(OBJ) gp_sysv.$(OBJ)
  5509. sysv_.dev: $(sysv__)
  5510.     $(SETMOD) sysv_ $(sysv__)
  5511.  
  5512. gp_sysv.$(OBJ): gp_sysv.c $(stdio__h) $(time__h) $(AK)
  5513.  
  5514. # -------------------------- Auxiliary programs --------------------------- #
  5515.  
  5516. $(ANSI2KNR_XE): ansi2knr.c
  5517.     $(CCA2K) $(O)$(ANSI2KNR_XE) $(srcdir)/ansi2knr.c
  5518.  
  5519. $(ECHOGS_XE): echogs.c $(AK)
  5520.     $(CCAUX) $(O)$(ECHOGS_XE) $(srcdir)/echogs.c
  5521.  
  5522. # On the RS/6000 (at least), compiling genarch.c with gcc with -O
  5523. # produces a buggy executable.
  5524. $(GENARCH_XE): genarch.c $(AK) $(stdpre_h)
  5525.     $(CCAUX) $(O)$(GENARCH_XE) $(srcdir)/genarch.c
  5526.  
  5527. $(GENCONF_XE): genconf.c $(AK) $(stdpre_h)
  5528.     $(CCAUX) $(O)$(GENCONF_XE) $(srcdir)/genconf.c
  5529.  
  5530. $(GENINIT_XE): geninit.c $(AK) $(stdio__h) $(string__h)
  5531.     $(CCAUX) $(O)$(GENINIT_XE) $(srcdir)/geninit.c
  5532.  
  5533. # Query the environment to construct gconfig_.h.
  5534. # The "else true; is required because Ultrix's implementation of sh -e
  5535. # terminates execution of a command if any error occurs, even if the command
  5536. # traps the error with ||.
  5537. INCLUDE=/usr/include
  5538. gconfig_.h: $(UNIXTAIL_MAK) $(ECHOGS_XE)
  5539.     ./echogs -w gconfig_.h -x 2f2a -s This file was generated automatically. -s -x 2a2f
  5540.     if ( test -f $(INCLUDE)/dirent.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_DIRENT_H; else true; fi
  5541.     if ( test -f $(INCLUDE)/ndir.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_NDIR_H; else true; fi
  5542.     if ( test -f $(INCLUDE)/sys/dir.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_DIR_H; else true; fi
  5543.     if ( test -f $(INCLUDE)/sys/ndir.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_NDIR_H; else true; fi
  5544.     if ( test -f $(INCLUDE)/sys/time.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_TIME_H; else true; fi
  5545.     if ( test -f $(INCLUDE)/sys/times.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_TIMES_H; else true; fi
  5546.  
  5547. # ----------------------------- Main program ------------------------------ #
  5548.  
  5549. ### Library files and archive
  5550.  
  5551. LIB_ARCHIVE_ALL=$(LIB_ALL) $(DEVS_ALL)\
  5552.  gsnogc.$(OBJ) gconfig.$(OBJ) gscdefs.$(OBJ)
  5553.  
  5554. # Build an archive for the library only.
  5555. # This is not used in a standard build.
  5556. GSLIB_A=$(GS)lib.a
  5557. $(GSLIB_A): $(LIB_ARCHIVE_ALL)
  5558.     rm -f $(GSLIB_A)
  5559.     $(AR) $(ARFLAGS) $(GSLIB_A) $(LIB_ARCHIVE_ALL)
  5560.     $(RANLIB) $(GSLIB_A)
  5561.  
  5562. ### Interpreter main program
  5563.  
  5564. INT_ARCHIVE_ALL=imainarg.$(OBJ) imain.$(OBJ) $(INT_ALL) $(DEVS_ALL)\
  5565.  gconfig.$(OBJ) gscdefs.$(OBJ)
  5566. XE_ALL=gs.$(OBJ) $(INT_ARCHIVE_ALL)
  5567.  
  5568. # Build a library archive for the entire interpreter.
  5569. # This is not used in a standard build.
  5570. GS_A=$(GS).a
  5571. $(GS_A): $(INT_ARCHIVE_ALL)
  5572.     rm -f $(GS_A)
  5573.     $(AR) $(ARFLAGS) $(GS_A) $(INT_ARCHIVE_ALL)
  5574.     $(RANLIB) $(GS_A)
  5575.  
  5576. # Here is the final link step.  The stuff with LD_RUN_PATH is for SVR4
  5577. # systems with dynamic library loading; I believe it's harmless elsewhere.
  5578. # The resetting of the environment variables to empty strings is for SCO Unix,
  5579. # which has limited environment space.
  5580. $(GS_XE): ld.tr echogs $(XE_ALL)
  5581.     ./echogs -w ldt.tr -n - $(CCLD) $(LDFLAGS) $(XLIBDIRS) -o $(GS_XE)
  5582.     ./echogs -a ldt.tr -n -s gs.$(OBJ) -s
  5583.     cat ld.tr >>ldt.tr
  5584.     ./echogs -a ldt.tr -s - $(EXTRALIBS) -lm
  5585.     LD_RUN_PATH=$(XLIBDIR); export LD_RUN_PATH; \
  5586.     XCFLAGS= XINCLUDE= XLDFLAGS= XLIBDIRS= XLIBS= \
  5587.     FEATURE_DEVS= DEVICE_DEVS= DEVICE_DEVS1= DEVICE_DEVS2= DEVICE_DEVS3= \
  5588.     DEVICE_DEVS4= DEVICE_DEVS5= DEVICE_DEVS6= DEVICE_DEVS7= DEVICE_DEVS8= \
  5589.     DEVICE_DEVS9= DEVICE_DEVS10= DEVICE_DEVS11= DEVICE_DEVS12= \
  5590.     DEVICE_DEVS13= DEVICE_DEVS14= DEVICE_DEVS15= \
  5591.     $(SH) <ldt.tr
  5592. #    Copyright (C) 1994, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  5593. # This file is part of Aladdin Ghostscript.
  5594. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  5595. # or distributor accepts any responsibility for the consequences of using it,
  5596. # or for whether it serves any particular purpose or works at all, unless he
  5597. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  5598. # License (the "License") for full details.
  5599. # Every copy of Aladdin Ghostscript must include a copy of the License,
  5600. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  5601. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  5602. # under certain conditions described in the License.  Among other things, the
  5603. # License requires that the copyright notice and this notice be preserved on
  5604. # all copies.
  5605.  
  5606. # Partial makefile common to all Unix and Desqview/X configurations.
  5607.  
  5608. # This is the very last part of the makefile for these configurations.
  5609. # Since Unix make doesn't have an 'include' facility, we concatenate
  5610. # the various parts of the makefile together by brute force (in tar_cat).
  5611.  
  5612. # Define a rule for building profiling configurations.
  5613. pg:
  5614.     make GENOPT='' CFLAGS='-pg -O $(GCFLAGS) $(XCFLAGS)' LDFLAGS='$(XLDFLAGS) -pg' XLIBS='Xt SM ICE Xext X11' CCLEAF='$(CCC)'
  5615.  
  5616. # Define a rule for building debugging configurations.
  5617. debug:
  5618.     make GENOPT='-DDEBUG' CFLAGS='-g -O $(GCFLAGS) $(XCFLAGS)'
  5619.  
  5620. # The rule for gconfigv.h is here because it is shared between Unix and
  5621. # DV/X environments.
  5622. gconfigv.h: unix-end.mak $(MAKEFILE) $(ECHOGS_XE)
  5623.     $(EXP)echogs -w gconfigv.h -x 23 define USE_ASM -x 2028 -q $(USE_ASM)-0 -x 29
  5624.     $(EXP)echogs -a gconfigv.h -x 23 define USE_FPU -x 2028 -q $(FPU_TYPE)-0 -x 29
  5625.     $(EXP)echogs -a gconfigv.h -x 23 define EXTEND_NAMES 0$(EXTEND_NAMES)
  5626.  
  5627. # The following rules are equivalent to what tar_cat does.
  5628. # The rm -f is so that we don't overwrite a file that `make'
  5629. # may currently be reading from.
  5630. GENERIC_MAK_LIST=$(GS_MAK) $(LIB_MAK) $(INT_MAK) $(JPEG_MAK) $(LIBPNG_MAK) $(ZLIB_MAK) $(DEVS_MAK)
  5631. UNIX_MAK_LIST=dvx-gcc.mak unixansi.mak unix-cc.mak unix-gcc.mak
  5632.  
  5633. unix.mak: $(UNIX_MAK_LIST)
  5634.  
  5635. DVX_GCC_MAK=$(VERSION_MAK) dgc-head.mak dvx-head.mak $(GENERIC_MAK_LIST) dvx-tail.mak unix-end.mak
  5636. dvx-gcc.mak: $(DVX_GCC_MAK)
  5637.     rm -f dvx-gcc.mak
  5638.     $(CAT) $(DVX_GCC_MAK) >dvx-gcc.mak
  5639.  
  5640. UNIXANSI_MAK=$(VERSION_MAK) ansihead.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5641. unixansi.mak: $(UNIXANSI_MAK)
  5642.     rm -f unixansi.mak
  5643.     $(CAT) $(UNIXANSI_MAK) >unixansi.mak
  5644.  
  5645. UNIX_CC_MAK=$(VERSION_MAK) cc-head.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5646. unix-cc.mak: $(UNIX_CC_MAK)
  5647.     rm -f unix-cc.mak
  5648.     $(CAT) $(UNIX_CC_MAK) >unix-cc.mak
  5649.  
  5650. UNIX_GCC_MAK=$(VERSION_MAK) gcc-head.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5651. unix-gcc.mak: $(UNIX_GCC_MAK)
  5652.     rm -f unix-gcc.mak
  5653.     $(CAT) $(UNIX_GCC_MAK) >unix-gcc.mak
  5654.  
  5655. # Installation
  5656.  
  5657. TAGS:
  5658.     etags -t *.c *.h
  5659.  
  5660. install: install-exec install-scripts install-data
  5661.  
  5662. # The sh -c in the rules below is required because Ultrix's implementation
  5663. # of sh -e terminates execution of a command if any error occurs, even if
  5664. # the command traps the error with ||.
  5665. # JOOP: change needed when installing for ixemul
  5666. #       $(INSTALL_PROGRAM) $(GS) $(bindir)/$(GS)
  5667.  
  5668. install-exec: $(GS)
  5669.     -mkdir $(bindir)
  5670.     $(INSTALL_PROGRAM) $(GS) $(bindir)$(GS)
  5671.  
  5672. install-scripts: gsnd
  5673.     -mkdir $(scriptdir)
  5674.     sh -c 'for f in gsbj gsdj gsdj500 gslj gslp gsnd bdftops font2c \
  5675. pdf2dsc pdf2ps printafm ps2ascii ps2epsi ps2pdf wftopfa ;\
  5676.     do if ( test -f $(srcdir)/$$f ); then $(INSTALL_PROGRAM) $(srcdir)/$$f $(scriptdir)/$$f; fi;\
  5677.     done'
  5678.  
  5679. MAN1_PAGES=gs pdf2dsc pdf2ps ps2ascii ps2epsi ps2pdf
  5680. install-data: gs.1
  5681.     -mkdir $(mandir)
  5682.     -mkdir $(man1dir)
  5683.     sh -c 'for f in $(MAN1_PAGES) ;\
  5684.     do if ( test -f $(srcdir)/$$f.1 ); then $(INSTALL_DATA) $(srcdir)/$$f.1 $(man1dir)/$$f.$(man1ext); fi;\
  5685.     done'
  5686.     -mkdir $(datadir)
  5687.     -mkdir $(gsdir)
  5688.     -mkdir $(gsdatadir)
  5689.     sh -c 'for f in Fontmap \
  5690. cbjc600.ppd cbjc800.ppd *.upp \
  5691. gs_init.ps gs_btokn.ps gs_ccfnt.ps gs_cff.ps gs_cidfn.ps gs_cmap.ps \
  5692. gs_diskf.ps gs_dpnxt.ps gs_dps.ps gs_dps1.ps gs_dps2.ps gs_epsf.ps \
  5693. gs_fonts.ps gs_kanji.ps gs_lev2.ps \
  5694. gs_pfile.ps gs_res.ps gs_setpd.ps gs_statd.ps \
  5695. gs_ttf.ps gs_typ42.ps gs_type1.ps \
  5696. gs_dbt_e.ps gs_iso_e.ps gs_ksb_e.ps gs_std_e.ps gs_sym_e.ps \
  5697. acctest.ps align.ps bdftops.ps caption.ps decrypt.ps docie.ps \
  5698. font2c.ps gslp.ps impath.ps landscap.ps level1.ps lines.ps \
  5699. markhint.ps markpath.ps \
  5700. packfile.ps pcharstr.ps pfbtogs.ps ppath.ps prfont.ps printafm.ps \
  5701. ps2ai.ps ps2ascii.ps ps2epsi.ps ps2image.ps \
  5702. quit.ps showchar.ps showpage.ps stcinfo.ps stcolor.ps \
  5703. traceimg.ps traceop.ps type1enc.ps type1ops.ps uninfo.ps unprot.ps \
  5704. viewcmyk.ps viewgif.ps viewjpeg.ps viewpcx.ps viewpbm.ps viewps2a.ps \
  5705. winmaps.ps wftopfa.ps wrfont.ps zeroline.ps \
  5706. gs_l2img.ps gs_pdf.ps \
  5707. pdf2dsc.ps \
  5708. pdf_base.ps pdf_draw.ps pdf_font.ps pdf_main.ps pdf_sec.ps pdf_2ps.ps \
  5709. gs_mex_e.ps gs_mro_e.ps gs_pdf_e.ps gs_wan_e.ps \
  5710. gs_pdfwr.ps ;\
  5711.     do if ( test -f $(srcdir)/$$f ); then $(INSTALL_DATA) $(srcdir)/$$f $(gsdatadir)/$$f; fi;\
  5712.     done'
  5713.     -mkdir $(docdir)
  5714.     sh -c 'for f in COPYING NEWS PUBLIC README \
  5715. bug-form.txt c-style.txt current.txt devices.txt drivers.txt fonts.txt \
  5716. helpers.txt hershey.txt history1.txt history2.txt history3.txt humor.txt \
  5717. install.txt language.txt lib.txt make.txt new-user.txt \
  5718. ps2epsi.txt ps2pdf.txt psfiles.txt public.txt \
  5719. unix-lpr.txt use.txt xfonts.txt ;\
  5720.     do if ( test -f $(srcdir)/$$f ); then $(INSTALL_DATA) $(srcdir)/$$f $(docdir)/$$f; fi;\
  5721.     done'
  5722.     -mkdir $(exdir)
  5723.     for f in alphabet.ps chess.ps cheq.ps colorcir.ps escher.ps golfer.ps \
  5724. grayalph.ps snowflak.ps tiger.ps waterfal.ps \
  5725. ridt91.eps ;\
  5726.     do $(INSTALL_DATA) $(srcdir)/$$f $(exdir)/$$f ;\
  5727.     done
  5728.